/*    // The following would be the same font as the inspiration tweet,*/
/*// but I like Mona Sans better for now :D */
/*// I still keep the gfont url just in case*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@500&display=swap');

@font-face {
  font-family: "Mona Sans";
  src: url("https://assets.codepen.io/64/Mona-Sans.woff2")
      format("woff2 supports variations"),
    url("https://assets.codepen.io/64/Mona-Sans.woff2")
      format("woff2-variations");
  font-weight: 100 1000;
}

:root {
  --icon-scale: 0;
  --icon-rotation: 0;
  --icon-opacity: 0;

  --color-pale-pink: hsl(272 16% 56.99%);
  --color-dark-purple: hsl(269.35 100% 21%);
  --color-light-purple: hsl(269.99 100% 40%);
  --color-bubblegum-pink: hsl(300deg 97% 68%);
}

@supports (color: color(display-p3 0 0 0)) {
  :root {
    --color-pale-pink: color(display-p3 0.56 0.5 0.63);
    --color-dark-purple: color(display-p3 0.19 0.01 0.41);
    --color-light-purple: color(display-p3 0.37 0.01 0.78);
    --color-bubblegum-pink: color(display-p3 0.94 0.36 1);
  }
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: calc(var(--debug) * 1px) dotted
    hsl(calc(var(--debug) * 10 * 1deg) 60% 60%);
}
main {
  width: 100%;
  height: 100%;
  margin: 0;
  padding-top:100px;
  /*background: hsl(271deg 100% 96%);*/
  font-family: "Mona Sans", sans-serif;
  /* border: 1px solid white; */
}

main {
  display: grid;
  place-items: center;
  
  --color-mix: color-mix(
        in lch,
        var(--color-bubblegum-pink) 60%,
        var(--color-dark-purple)
      );

  & button {
    all: unset;
    cursor: pointer;
    font-size: 3em;
    font-weight: 700;
    color: black;
    position: relative;
    transition: transform .2s ease;

    &:before {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      
       background: linear-gradient(
          to bottom right,
          var(--color-pale-pink),
          var(--color-pale-pink)
        );
      transform: scale(0.9);
      outline: 0px solid var(--color-light-purple);
      border-radius: 1e5px;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    span:nth-child(2) {
      position: relative;
      padding: 0.5em 1.2em;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 2;
      display: block;
      border-radius: 1e5px;
      transition: transform 0.2s ease;

      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: var(--icon-opacity);
        transform: scale(var(--icon-scale))
          rotate(calc(var(--icon-rotation) * -1deg));
        transition: transform 0.2s ease, opacity .2s ease,
          --icon-rotation 0.4s cubic-bezier(.02,1.02,.67,1.06);
        pointer-events: none;
        z-index: -1;
      }

      &:before {
        width: 2.1em;
        top: -0.8em;
        left: -0.8em;
        background: url(https://assets.codepen.io/64/heart+%286%29+%281%29.png)
          no-repeat center center / contain;
        z-index: -1;
         filter:  drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }

      &:after {
        width: 1.2em;
        top: 1em;
        left: 0.5em;
        background: url(https://assets.codepen.io/64/heart+%285%29+%281%29.png)
          no-repeat center center / contain;
        filter: blur(2px) drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }
    }
    
   
    span:nth-child(1) {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: transparent;

      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 5;
        transform: scale(var(--icon-scale))
          rotate(calc(var(--icon-rotation) * -1deg));
        transition: transform 0.2s ease, opacity .2s ease,
          --icon-rotation 0.4s cubic-bezier(.02,1.02,.67,1.06);
        pointer-events: none;
       
      }

      &:before {
        width: 1.75em;
        top: -1em;
        right: 0.5em;
        background: url(https://assets.codepen.io/64/heart+%283%29+%281%29.png)
          no-repeat center center / contain;
        filter: blur(1px) drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }

      &:after {
        width: 2em;
        top: 1em;
        right: -0.5em;
        background: url(https://assets.codepen.io/64/heart+%284%29+%281%29.png)
          no-repeat center center / contain;
         filter:  drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }
    }

    &:hover {
      --icon-scale: 1;
      --icon-rotation: 0;
      --icon-opacity: 1;
      

      &:before {
        transform: scale(1.05);
        background: linear-gradient(
          to bottom right,
          var(--color-dark-purple),
          var(--color-light-purple)
        );
        box-shadow: 0 4px 22px -8px var(--color-mix);
      }

      & > span:nth-child(2) {
        transform: scale(0.95);
      }
      
      &:active {
        --icon-scale: 0.8;
        --icon-rotation: 20;

        transform: scale(1.05);

        &:before {
          box-shadow: 0 2px 12px var(--color-mix);
        }

        span:before,
        span:after {
          transition-delay: 0s;
        }

        span:nth-child(odd):before,
        span:nth-child(even):before {
          --icon-rotation: -20;
        }

        span:nth-child(odd):after,
        span:nth-child(even):after {
          --icon-rotation: 20;
        }

        &:before {
          transform: scale(0.95);
        }
      }
    }
  }
}

@media (max-width: 768px){
  main {
  display: grid;
  place-items: center;
  
  --color-mix: color-mix(
        in lch,
        var(--color-bubblegum-pink) 60%,
        var(--color-dark-purple)
      );

  & button {
    all: unset;
    cursor: pointer;
    font-size: 2em;
    font-weight: 700;
    color: black;
    position: relative;
    transition: transform .2s ease;

    &:before {
      content: "";
      display: block;
      position: absolute;
      width: 100%;
      height: 100%;
      
       background: linear-gradient(
          to bottom right,
          var(--color-pale-pink),
          var(--color-pale-pink)
        );
      transform: scale(0.9);
      outline: 0px solid var(--color-light-purple);
      border-radius: 1e5px;
      transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    }

    span:nth-child(2) {
      position: relative;
      /* padding: 0.5em 1.2em; */
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: 2;
      display: block;
      border-radius: 1e5px;
      transition: transform 0.2s ease;

      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        opacity: var(--icon-opacity);
        transform: scale(var(--icon-scale))
          rotate(calc(var(--icon-rotation) * -1deg));
        transition: transform 0.2s ease, opacity .2s ease,
          --icon-rotation 0.4s cubic-bezier(.02,1.02,.67,1.06);
        pointer-events: none;
        z-index: -1;
      }

      &:before {
        width: 2.1em;
        top: -0.8em;
        left: -0.8em;
        background: url(https://assets.codepen.io/64/heart+%286%29+%281%29.png)
          no-repeat center center / contain;
        z-index: -1;
         filter:  drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }

      &:after {
        width: 1.2em;
        top: 1em;
        left: 0.5em;
        background: url(https://assets.codepen.io/64/heart+%285%29+%281%29.png)
          no-repeat center center / contain;
        filter: blur(2px) drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }
    }
    
   
    span:nth-child(1) {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      background: transparent;

      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        right: 0;
        z-index: 5;
        transform: scale(var(--icon-scale))
          rotate(calc(var(--icon-rotation) * -1deg));
        transition: transform 0.2s ease, opacity .2s ease,
          --icon-rotation 0.4s cubic-bezier(.02,1.02,.67,1.06);
        pointer-events: none;
       
      }

      &:before {
        width: 1.75em;
        top: -1em;
        right: 0.5em;
        background: url(https://assets.codepen.io/64/heart+%283%29+%281%29.png)
          no-repeat center center / contain;
        filter: blur(1px) drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }

      &:after {
        width: 2em;
        top: 1em;
        right: -0.5em;
        background: url(https://assets.codepen.io/64/heart+%284%29+%281%29.png)
          no-repeat center center / contain;
         filter:  drop-shadow(0 2px 4px rgb(0 0 0 / 20%)) saturate(150%);
      }
    }

    &:hover {
      --icon-scale: 1;
      --icon-rotation: 0;
      --icon-opacity: 1;
      

      &:before {
        transform: scale(1.05);
        background: linear-gradient(
          to bottom right,
          var(--color-dark-purple),
          var(--color-light-purple)
        );
        box-shadow: 0 4px 22px -8px var(--color-mix);
      }

      & > span:nth-child(2) {
        transform: scale(0.95);
      }
      
      &:active {
        --icon-scale: 0.8;
        --icon-rotation: 20;

        transform: scale(1.05);

        &:before {
          box-shadow: 0 2px 12px var(--color-mix);
        }

        span:before,
        span:after {
          transition-delay: 0s;
        }

        span:nth-child(odd):before,
        span:nth-child(even):before {
          --icon-rotation: -20;
        }

        span:nth-child(odd):after,
        span:nth-child(even):after {
          --icon-rotation: 20;
        }

        &:before {
          transform: scale(0.95);
        }
      }
    }
  }
}

}


/* ================= RESET ================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
:root {
  --animate-duration: 800ms;
  --animate-delay: 0.9s;
}

a {
  display: inline-block;
  margin: 0 0.5rem;

  animation: pulse; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}
h1,h2,h3,h4,h5,h6 {
  display: inline-block;
  margin: 0 0.5rem;

  animation: flash; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}
p span {
  display: inline-block;
  margin: 0 0.5rem;

  animation: headShake; /* referring directly to the animation's @keyframe declaration */
  animation-duration: 2s; /* don't forget to set a duration! */
}

html, body{
  width:100%;
}

/* ===== BODY AS MAIN LAYOUT ===== */
body{
  min-height:100vh;
  display:grid;
  /*place-items:center;      */
  /* centers content horizontally & vertically */
  
  font-family:'Poppins', sans-serif;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, #0d0d0d, #1b1b1b);

  overflow-x:hidden;
  padding-top:80px;            /* space for fixed navbar */
}
/* ================= HERO ================= */
.slider{padding-bottom:80px}
.slide.home{
  /*background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),*/
  /*url("index-image.jpg") center/cover no-repeat;*/
  display:flex;  flex-wrap: wrap; align-items:center;justify-content:center
}

/* ================= NAV ================= */
.desktop-nav{
  position:fixed;top:0;width:100%;height:96px;
  padding:0 60px;
  display:flex;align-items:center;justify-content:space-between;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  z-index:1000
}

.logo{display:flex;align-items:center;gap:16px}
.logo img{height:72px;filter:drop-shadow(0 6px 12px rgba(0,0,0,.3))}
.logo p{
  font-family:'Playfair Display',serif;
  font-size:22px;color:#fff;line-height:1.2;
  text-shadow:0 2px 8px rgba(0,0,0,.4)
}

.desktop-menu a{
  margin:0 18px;color:#fff;text-decoration:none;position:relative
}
/* .desktop-menu a::after{
  content:'';position:absolute;left:0;bottom:-8px;
  width:0;height:2px;background:#f4c2c2;transition:.3s
} */
/* .desktop-menu a:hover::after{width:100%} */

.number{color:#fff;font-weight:500}

/* ================= HERO CONTENT ================= */
.home-content{text-align:center;color:#fff;max-width:900px}
.home-content h1{
  font-family:'Playfair Display',serif;
  font-size:64px;margin-top: 10px;
}
.home-content p span{color:#f5c6cf}
.home-content p{font-size:20px;opacity:.9}

.home-buttons{margin-top:35px}
.btn-primary,.btn-secondary{
  padding:16px 40px;border-radius:50px;
  text-decoration:none;margin:10px;display:inline-block;
  transition:.4s
}
.btn-primary{
  background:linear-gradient(135deg,#c08497,#f4c2c2);
  color:#fff;box-shadow:0 20px 40px rgba(0,0,0,.3)
}
.btn-primary:hover{transform:translateY(-4px)}
.btn-secondary{border:1.5px solid #fff;color:#fff}
.btn-secondary:hover{background:#fff;color:#000}

/* ================= PAGE ARROWS ================= */
.next-page-btn,.back-home-btn{
  position:fixed;top:50%;transform:translateY(-50%);
  width:55px;height:55px;border-radius:50%;
  background:rgba(255,255,255,.18);
  backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:22px;cursor:pointer;
  z-index:1100;transition:.3s
}
.next-page-btn{right:25px}
.back-home-btn{left:25px}
.next-page-btn:hover,.back-home-btn:hover{
  background:#fff;color:#b76e79
}

/* ================= CONTACT FLOAT BTN ================= */
.contact-open-btn{
  position:fixed;right:25px;bottom:25px;
  width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#c08497,#f4c2c2);
  color:#fff;border:none;font-size:22px;
  cursor:pointer;z-index:1200;
  box-shadow:0 20px 40px rgba(0,0,0,.35)
}

/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;top:0;right:-380px;
  width:360px;height:100vh;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(16px);
  padding:30px;transition:.4s;
  z-index:1300
}
.contact-sidebar.active{right:0}

.close-btn{
  position:absolute;top:18px;right:18px;
  width:38px;height:38px;border-radius:50%;
  background:#fff;display:flex;align-items:center;justify-content:center;
  cursor:pointer;font-size:22px
}

.input-box{position:relative;margin-bottom:16px}
.input-box i{position:absolute;left:14px;top:50%;transform:translateY(-50%)}
.input-box input,.input-box textarea{
  width:100%;padding:14px 14px 14px 40px;
  border-radius:10px;border:1px solid #ddd
}

.contact-form button{
  width:100%;padding:14px;border-radius:50px;
  border:none;background:#c08497;color:#fff
}

/* ================= MOBILE ================= */
@media(max-width:900px){
  .desktop-menu{display:none}
  .home-content h1{font-size:32px;}
  .contact-sidebar{width:100%;right:-100%}
}

/* ================= MOBILE NAV REFINEMENT ================= */
@media (max-width: 768px){

  .desktop-nav{
    padding:0 16px;
    height:80px;
  }

  /* Logo + name always visible */
  .logo{
    gap:10px;
  }

  .logo img{
    height:52px;
  }

  .logo p{
    font-size:16px;
    line-height:1.1;
  }

  /* WhatsApp icon only */
  .whatsapp-link{
    width:42px;
    height:42px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#25D366,#128C7E);
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    text-decoration:none;
  }

  .whatsapp-link i{
    color:#fff;
    font-size:20px;
  }

  /* Hide number text on mobile */
  .whatsapp-text{
    display:none;
  }

}


/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;
  top:0;
  right:-420px;
  width:420px;
  height:100vh;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  box-shadow:-25px 0 60px rgba(0,0,0,.35);
  padding:30px 26px 160px;
  z-index:1200;
  transition:.45s ease;
  overflow-y:auto;
}

.contact-sidebar.active{
  right:0;
}

/* Title */
.contact-title{
  font-size:26px;
  color:#b76e79;
  margin-bottom:5px;
}

.contact-sub{
  font-size:14px;
  opacity:.7;
  margin-bottom:25px;
}

/* WhatsApp Button */
.whatsapp-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px;
  border-radius:40px;
  background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.35);
  transition:.3s ease;
}

.whatsapp-btn i{
  font-size:22px;
}

.whatsapp-btn:hover{
  transform:scale(1.05);
}

/* Social Icons */
.social-icons{
  display:flex;
  gap:14px;
  margin:25px 0;
}

.social-icons a{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#b76e79;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:.3s ease;
}

.social-icons a:hover{
  transform:scale(1.1);
  background:#000;
}

/* Subscribe */
.subscribe-box h4{
  margin-bottom:10px;
  font-size:16px;
}

.subscribe-box form{
  display:flex;
  gap:10px;
}

.subscribe-box input{
  flex:1;
  padding:10px 14px;
  border-radius:25px;
  border:1px solid #ccc;
  outline:none;
}

.subscribe-box button{
  padding:10px 18px;
  border-radius:25px;
  border:none;
  background:#b76e79;
  color:#fff;
  cursor:pointer;
  transition:.3s ease;
}

.subscribe-box button:hover{
  background:#000;
}

/* Map */
.map-box{
  margin-top:25px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.25);
}

.map-box iframe{
  width:100%;
  height:200px;
  border:none;
}

/* Address (Sticky Bottom) */
.contact-address{
  position:fixed;
  bottom:0;
  right:0;
  width:420px;
  padding:18px;
  background:#b76e79;
  color:#fff;
  text-align:center;
  box-shadow:0 -10px 30px rgba(0,0,0,.35);
}

.contact-address h5{
  margin-bottom:5px;
  font-size:16px;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .contact-sidebar{
    width:100%;
    right:-100%;
    padding-bottom:200px;
  }

  .contact-address{
    width:100%;
  }

  .map-box iframe{
    height:180px;
  }

  .social-icons{
    justify-content:center;
  }

  .subscribe-box form{
    flex-direction:column;
  }

  .subscribe-box button{
    width:100%;
  }
}

/* ================= DESKTOP WHATSAPP MENU BUTTON ================= */
@media (min-width: 769px){

  .whatsapp-link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:30px;
    background:linear-gradient(135deg,#25D366,#128C7E);
    color:#fff;
    font-weight:600;
    text-decoration:none;
    box-shadow:0 10px 28px rgba(0,0,0,.35);
    transition:.35s ease;
  }

  .whatsapp-link i{
    font-size:18px;
    color:#fff;
  }

  .whatsapp-text{
    display:inline;
    font-size:14px;
    letter-spacing:.3px;
  }

  .whatsapp-link:hover{
    transform:translateY(-2px) scale(1.05);
    box-shadow:0 15px 35px rgba(0,0,0,.45);
  }
}

/* ================= HERO LOGO ================= */
.hero-logo{
  margin-bottom:28px;
  display:flex;
  justify-content:center;
}

.hero-logo img{
  height:120px;
  width:auto;
  filter:drop-shadow(0 15px 35px rgba(0,0,0,.45));
  animation:heroLogoFade 1.2s ease forwards;
}

@keyframes heroLogoFade{
  from{
    opacity:0;
    transform:translateY(-20px) scale(.9);
  }
  to{
    opacity:1;
    transform:none;
  }
}

/* ================= DESKTOP ================= */
@media(min-width:769px){
  .hero-logo img{
    height:140px;
  }
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .hero-logo{
    margin-bottom:18px;
  }

  .hero-logo img{
    height:90px;
  }

  .home-content h1{
    font-size:26px;
  }

  .home-content p{
    font-size:14px;
  }
}

/* inmdex end */


/* ============================================================================================================================================================================================================================================ */


/* about style */

/* ================= RESET ================= */
/* ===== RESET ===== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html, body{
  width:100%;
}

/* ===== BODY AS MAIN LAYOUT ===== */
body{
  min-height:100vh;
  display:grid;
  place-items:center;          /* centers content horizontally & vertically */
  font-family:'Poppins', sans-serif;
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, #0d0d0d, #1b1b1b);

  overflow-x:hidden;
  padding-top:70px;            /* space for fixed navbar */
}



/* ================= NAVBAR ================= */
.desktop-nav{
  position:fixed;top:0;left:0;width:100%;height:96px;
  padding:0 50px;display:flex;align-items:center;justify-content:space-between;
  background:rgba(0,0,0,.25);backdrop-filter:blur(14px);z-index:1000;
}
.logo{display:flex;align-items:center;gap:16px}
.logo img{height:72px;filter:drop-shadow(0 6px 18px rgba(0,0,0,.4))}
.logo p{font-family:'Playfair Display',serif;font-size:22px;color:#fff;line-height:1.2;}
.desktop-menu a{
  margin:0 18px;color:#fff;text-decoration:none;position:relative;font-weight:500;
}
/* .desktop-menu a::after{
  content:'';position:absolute;left:0;bottom:-8px;width:0;height:2px;background:#d4af37;transition:.3s
} */
/* .desktop-menu a:hover::after{width:100%} */

/* WhatsApp desktop button */
.whatsapp-link{
  display:flex;align-items:center;gap:10px;padding:10px 18px;
  border-radius:30px;background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;font-weight:600;text-decoration:none;box-shadow:0 10px 28px rgba(0,0,0,.35);
}
.whatsapp-link i{font-size:18px;color:#fff;}
.whatsapp-link span{font-size:14px;letter-spacing:.3px;}

/* ================= HERO / ABOUT ================= */
/*.slider,.slide.about{width:100vw;height:100vh}*/
.slide.about{
  width:100%;
  height: 100%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.about-wrap{max-width:1200px;padding:40px;color:#fff;}
.about-wrap h1{font-family:'Playfair Display',serif;font-size:54px;margin-bottom:10px;}
.about-wrap .tagline{font-size:18px;opacity:.85;margin-bottom:50px;}
.about-content{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.about-img img{width:100%;border-radius:24px;box-shadow:0 30px 60px rgba(0,0,0,.45);}
.about-text h3{font-family:'Playfair Display',serif;font-size:32px;margin-bottom:18px;color:#d4af37;}
.about-text p{font-size:16px;line-height:1.8;margin-bottom:16px;opacity:.95;}





/* ================= PAGE ARROWS ================= */
.next-page-btn,.back-home-btn{
  position:fixed;top:50%;transform:translateY(-50%);
  width:55px;height:55px;border-radius:50%;
  background:rgba(255,255,255,.2);backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;
  cursor:pointer;z-index:1100;transition:.3s;
}
.next-page-btn{right:25px;}
.back-home-btn{left:25px;}
.next-page-btn:hover,.back-home-btn:hover{background:#fff;color:#b76e79}

/* ================= CONTACT FLOAT BUTTON ================= */
.contact-open-btn{
  position:fixed;right:25px;bottom:25px;width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#c08497,#f4c2c2);color:#fff;border:none;font-size:22px;
  cursor:pointer;z-index:1200;box-shadow:0 20px 40px rgba(0,0,0,.35)
}

/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;top:0;right:-420px;width:420px;height:100vh;
  background:rgba(255,255,255,.92);backdrop-filter:blur(18px);
  box-shadow:-25px 0 60px rgba(0,0,0,.35);padding:30px 26px 160px;z-index:1300;
  transition:.45s ease;overflow-y:auto;
}
.contact-sidebar.active{right:0;}
.close-btn{position:absolute;top:18px;right:18px;width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:22px}

.contact-title{font-size:26px;color:#b76e79;margin-bottom:5px;}
.contact-sub{font-size:14px;opacity:.7;margin-bottom:25px;}
.whatsapp-btn{display:flex;align-items:center;justify-content:center;gap:10px;padding:14px;border-radius:40px;background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;font-weight:600;text-decoration:none;box-shadow:0 12px 30px rgba(0,0,0,.35);transition:.3s ease;}
.whatsapp-btn i{font-size:22px;}
.whatsapp-btn:hover{transform:scale(1.05);}

.social-icons{display:flex;gap:14px;margin:25px 0;}
.social-icons a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#b76e79;color:#fff;font-size:18px;text-decoration:none;transition:.3s ease;}
.social-icons a:hover{transform:scale(1.1);background:#000;}

.subscribe-box h4{margin-bottom:10px;font-size:16px;}
.subscribe-box form{display:flex;gap:10px;}
.subscribe-box input{flex:1;padding:10px 14px;border-radius:25px;border:1px solid #ccc;outline:none;}
.subscribe-box button{padding:10px 18px;border-radius:25px;border:none;background:#b76e79;color:#fff;cursor:pointer;transition:.3s ease;}
.subscribe-box button:hover{background:#000;}

.map-box{margin-top:25px;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.25);}
.map-box iframe{width:100%;height:200px;border:none;}

.contact-address{position:fixed;bottom:0;right:0;width:420px;padding:18px;background:#b76e79;color:#fff;text-align:center;box-shadow:0 -10px 30px rgba(0,0,0,.35);}
.contact-address h5{margin-bottom:5px;font-size:16px;}

/* ================= FORM ================= */
.input-box{position:relative;margin-bottom:16px;}
.input-box i{position:absolute;left:14px;top:50%;transform:translateY(-50%)}
.input-box input,.input-box textarea{width:100%;padding:14px 14px 14px 40px;border-radius:10px;border:1px solid #ddd;}
.contact-form button{width:100%;padding:14px;border-radius:50px;border:none;background:#c08497;color:#fff}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .desktop-menu{display:none}
  .desktop-nav{height:80px;padding:0 16px}
  .logo img{height:52px}.logo p{font-size:16px}
  .whatsapp-link{width:42px;height:42px;border-radius:50%;justify-content:center;padding:0}
  .whatsapp-link span{display:none}
  .about-wrap h1{font-size:32px}
  .about-content{grid-template-columns:1fr}
  .contact-sidebar{width:100%;right:-100%;padding-bottom:200px}
  .contact-address{width:100%}
  .map-box iframe{height:180px}
  .social-icons{justify-content:center}
  .subscribe-box form{flex-direction:column}
  .subscribe-box button{width:100%}
}

@media(max-width:768px){
  .slide.about{
    /* padding-top:80px; */
  }
}
@media (max-width:768px){
  body{
    padding-top:80px;
  }

  .about-wrap h1{
    font-size:32px;
  }
}

@media(min-width:769px){
  .whatsapp-link:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 15px 35px rgba(0,0,0,.45);}
}
/* about end */

/* ===================================================================================================================================================================================================================================== */

/*================== service style===================== */

/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box}
/*html,body{width:100%;height:100%;font-family:'Poppins',sans-serif;overflow-x:hidden;}*/

/* ================= NAVBAR ================= */
.desktop-nav{
  position:fixed;top:0;left:0;width:100%;height:96px;
  padding:0 50px;display:flex;align-items:center;justify-content:space-between;
  background:rgba(0,0,0,.25);backdrop-filter:blur(14px);z-index:1000;
}
.logo{display:flex;align-items:center;gap:16px}
.logo img{height:72px;filter:drop-shadow(0 6px 18px rgba(0,0,0,.4))}
.logo p{font-family:'Playfair Display',serif;font-size:22px;color:#fff;line-height:1.2;}
.desktop-menu a{
  margin:0 18px;color:#fff;text-decoration:none;position:relative;font-weight:500;
}
/* .desktop-menu a::after{
  content:'';position:absolute;left:0;bottom:-8px;width:0;height:2px;background:#d4af37;transition:.3s
}
.desktop-menu a:hover::after{width:100%} */

/* WhatsApp desktop button */
.whatsapp-link{
  display:flex;align-items:center;gap:10px;padding:10px 18px;
  border-radius:30px;background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;font-weight:600;text-decoration:none;box-shadow:0 10px 28px rgba(0,0,0,.35);
}
.whatsapp-link i{font-size:18px;color:#fff;}
.whatsapp-link span{font-size:14px;letter-spacing:.3px;}

/* ================= HERO / ABOUT ================= */
/*.slider,.slide.about{width:100vw;height:100vh}*/
.slide.about{
  
  display:flex;align-items:center;justify-content:center;
  /* padding-top:96px; */
}
.about-wrap{max-width:1200px;padding:40px;color:#fff;}
.about-wrap h1{font-family:'Playfair Display',serif;font-size:54px;margin-bottom:10px;}
.about-wrap .tagline{font-size:18px;opacity:.85;margin-bottom:50px;}
.about-content{display:grid;grid-template-columns:1fr 1fr;gap:100px;align-items:center;}
.about-img img{width:100%;border-radius:24px;box-shadow:0 30px 60px rgba(0,0,0,.45);}
.about-text h3{font-family:'Playfair Display',serif;font-size:32px;margin-bottom:18px;color:#d4af37;}
.about-text p{font-size:16px;line-height:1.8;margin-bottom:16px;opacity:.95;}
.about-img{margin-top: 100px;}
/* ================= PAGE ARROWS ================= */
.next-page-btn,.back-home-btn{
  position:fixed;top:50%;transform:translateY(-50%);
  width:55px;height:55px;border-radius:50%;
  background:rgba(255,255,255,.2);backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;
  cursor:pointer;z-index:1100;transition:.3s;
}
.next-page-btn{right:25px;}
.back-home-btn{left:25px;}
.next-page-btn:hover,.back-home-btn:hover{background:#fff;color:#b76e79}

/* ================= CONTACT FLOAT BUTTON ================= */
.contact-open-btn{
  position:fixed;right:25px;bottom:25px;width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#c08497,#f4c2c2);color:#fff;border:none;font-size:22px;
  cursor:pointer;z-index:1200;box-shadow:0 20px 40px rgba(0,0,0,.35)
}

/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;top:0;right:-420px;width:420px;height:100vh;
  background:rgba(255,255,255,.92);backdrop-filter:blur(18px);
  box-shadow:-25px 0 60px rgba(0,0,0,.35);padding:30px 26px 160px;z-index:1300;
  transition:.45s ease;overflow-y:auto;
}
.contact-sidebar.active{right:0;}
.close-btn{position:absolute;top:18px;right:18px;width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:22px;color:black}

.contact-title{font-size:26px;color:#b76e79;margin-bottom:5px;}
.contact-sub{font-size:14px;opacity:.7;color:black;margin-bottom:25px;}
.whatsapp-btn{display:flex;align-items:center;justify-content:center;gap:10px;padding:14px;border-radius:40px;background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;font-weight:600;text-decoration:none;box-shadow:0 12px 30px rgba(0,0,0,.35);transition:.3s ease;}
.whatsapp-btn i{font-size:22px;}
.whatsapp-btn:hover{transform:scale(1.05);}

.social-icons{display:flex;gap:14px;margin:25px 0;}
.social-icons a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#b76e79;color:#fff;font-size:18px;text-decoration:none;transition:.3s ease;}
.social-icons a:hover{transform:scale(1.1);background:#000;}

.subscribe-box h4{margin-bottom:10px;font-size:16px;color:black}
.subscribe-box form{display:flex;gap:10px;}
.subscribe-box input{flex:1;padding:10px 14px;border-radius:25px;border:1px solid #ccc;outline:none;}
.subscribe-box button{padding:10px 18px;border-radius:25px;border:none;background:#b76e79;color:#fff;cursor:pointer;transition:.3s ease;}
.subscribe-box button:hover{background:#000;}

.map-box{margin-top:25px;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.25);}
.map-box iframe{width:100%;height:200px;border:none;}

.contact-address{position:fixed;bottom:0;right:0;width:420px;padding:18px;background:#b76e79;color:#fff;text-align:center;box-shadow:0 -10px 30px rgba(0,0,0,.35);}
.contact-address h5{margin-bottom:5px;font-size:16px;}

/* ================= FORM ================= */
.input-box{position:relative;margin-bottom:16px;}
.input-box i{position:absolute;left:14px;top:50%;transform:translateY(-50%)}
.input-box input,.input-box textarea{width:100%;padding:14px 14px 14px 40px;border-radius:10px;border:1px solid #ddd;}
.contact-form button{width:100%;padding:14px;border-radius:50px;border:none;background:#c08497;color:#fff}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .desktop-menu{display:none}
  .desktop-nav{height:80px;padding:0 16px}
  .logo img{height:52px}.logo p{font-size:16px}
  .whatsapp-link{width:42px;height:42px;border-radius:50%;justify-content:center;padding:0}
  .whatsapp-link span{display:none}
  .about-wrap h1{font-size:32px}
  .about-content{grid-template-columns:1fr}
  .contact-sidebar{width:100%;right:-100%;padding-bottom:200px}
  .contact-address{width:100%}
  .map-box iframe{height:180px}
  .social-icons{justify-content:center}
  .subscribe-box form{flex-direction:column}
  .subscribe-box button{width:100%}
}
@media(min-width:769px){
  .whatsapp-link:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 15px 35px rgba(0,0,0,.45);}
}

/* ====================== CONTAINER ====================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
  
}

/* ====================== SERVICES SECTION ====================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ====================== SERVICE CARD ====================== */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ====================== CARD IMAGE ====================== */
.service-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}

/* ====================== CARD CONTENT ====================== */
.service-content {
  padding: 25px;
  background: #fff;
  text-align: center;
}
.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #222;
}
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 1em;
  color: #555;
}
.service-content ul li span:first-child {
  font-weight: 500;
  color: #000;
}
.service-content ul li span:last-child {
  font-weight: 600;
  color: #e91e63; /* premium accent */
}

/* ====================== PREMIUM RIBBON TAG ====================== */
.service-card::before {
  content: 'Premium';
  position: absolute;
  top: 15px;
  left: -45px;
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: 5px 60px;
  transform: rotate(-45deg);
  font-size: 0.85em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}

/* ====================== FADE ANIMATION ====================== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.2s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .services {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .service-card::before { display: none; }
  .service-content h2 { font-size: 1.6em; }
}

@media (max-width: 480px) {
  .service-content h2 { font-size: 1.4em; }
  .service-content ul li { font-size: 0.95em; }
}


/* ====================== BODY & PAGE ====================== */
body {
  font-family: 'Poppins', sans-serif;
  /*background: linear-gradient(145deg, #1a1a1a, #2c2c2c);*/
  /*background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),url("back-image.jpg") center/cover no-repeat;*/
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, #0d0d0d, #1b1b1b);
  color: #f5f5f5;
  margin: 0;
  padding-top: 96px; /* for fixed navbar */
  overflow-x: hidden;
}

/* ====================== NAVBAR ====================== */
.desktop-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 96px;
  /* padding: 0 50px; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  z-index: 1000;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}
.desktop-menu a {
  margin: 0 18px;
  color: #f5f5f5;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}
/* .desktop-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: .3s;
}
.desktop-menu a:hover::after {
  width: 100%;
} */

/* ====================== WHATSAPP BUTTON ====================== */
.whatsapp-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-link:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

/* ====================== SERVICES SECTION ====================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ====================== SERVICE CARD ====================== */
.service-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  background: linear-gradient(145deg, #2b2b2b, #1f1f1f);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.75);
}

/* ====================== CARD IMAGE ====================== */
.service-img {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.85);
}
.service-card:hover .service-img img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* ====================== CARD CONTENT ====================== */
.service-content {
  padding: 30px 20px;
  text-align: center;
}
.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2em;
  margin-bottom: 15px;
  color: #d4af37;
  letter-spacing: 1px;
}
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(212, 175, 55, 0.3);
  font-size: 1em;
  color: #e0e0e0;
}
.service-content ul li span:first-child {
  font-weight: 500;
}
.service-content ul li span:last-child {
  font-weight: 600;
  color: #e91e63; /* premium accent */
}

/* ====================== PREMIUM RIBBON ====================== */
.service-card::before {
  content: 'Premium';
  position: absolute;
  top: 15px;
  left: -45px;
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: 5px 60px;
  transform: rotate(-45deg);
  font-size: 0.85em;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}

/* ====================== FADE ANIMATION ====================== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.2s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .services { gap: 25px; }
}
@media (max-width: 768px) {
  .service-card::before { display: none; }
  .service-content h2 { font-size: 1.6em; }
}
@media (max-width: 480px) {
  .service-content h2 { font-size: 1.4em; }
  .service-content ul li { font-size: 0.95em; }
}
/* service end */

/* ================================================================================================================================================================================================================================ */
