/* =========================
   LUXURY WEB
========================= */
html, body {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.hero {
  width: 100%;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --black: #0f0f0f;
  --dark: #1a1a1a;
  --gray: #bdbdbd;
  --light: #f5f5f5;
  --white: #ffffff;
  --accent: #d6d6d6;
}

/* BODY */
body {
  background: var(--light);
  color: var(--black);
  overflow-x: hidden;
}

/* =========================
   LOADER
========================= */

.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOut 1s ease 2s forwards;
}

.loader-logo {
  color: var(--white);
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 600;
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.logo{
    position:relative;
    text-decoration:none;
    font-size:28px;
    font-weight:900;
    letter-spacing:3px;
    color:#ffffff;

    text-transform:uppercase;

    display:flex;
    align-items:center;

    transition:.4s ease;
}

.logo span{
    color:#d4af37; /* luxury gold */

    margin-right:4px;

    text-shadow:
    0 0 10px rgba(212,175,55,.3),
    0 0 20px rgba(212,175,55,.2);
}

/* gold line under logo */

.logo::after{
    content:"";

    position:absolute;
    bottom:-8px;
    left:0;

    width:45px;
    height:2px;

    background:linear-gradient(
        90deg,
        #d4af37,
        #f6e27a
    );

    transition:.4s ease;
}

.logo:hover{
    transform:translateY(-2px);
}

.logo{
    font-family:'Cinzel', serif;
}
.logo:hover::after{
    width:100%;
}

.logo:hover span{
    color:#f6e27a;
}
/* =========================
   NAVBAR
========================= */

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

@media (max-width: 768px) {
  .nav-btn {
    display: none; /* hide WhatsApp button on small screens */
  }

  .nav-right {
    gap: 10px;
  }

  .navbar {
    padding: 15px 20px;
  }
}
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 40px;
  background: rgba(15, 15, 15, 0.4);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);

  box-sizing: border-box;
}

.mobile-only-whatsapp {
  display: none;
}

@media (max-width: 768px) {

  /* hide desktop WhatsApp */
  .desktop-whatsapp {
    display: none !important;
  }

  /* menu is hidden by default */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: rgba(0,0,0,0.9);
    padding: 20px;
    border-radius: 10px;
    width: 220px;
  }

  /* when hamburger is clicked */
  .nav-links.active {
    display: flex;
  }

  /* WhatsApp inside menu */
  .mobile-only-whatsapp {
    display: block;
    margin-top: 10px;
  }

  .mobile-only-whatsapp a {
    display: block;
    width: 100%;
    text-align: center;
  }
}
.logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 2px;
}

.logo span {
  color: var(--accent);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 1px;
  background: var(--accent);
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* WHATSAPP BUTTON */
.nav-btn {
  background: #25D366;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: scale(1.05);
}

/* MOBILE MENU */
.menu-toggle {
  display: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  height: 100vh;
  background: url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* DARK OVERLAY */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: var(--white);
  animation: fadeUp 1.2s ease;
}
.hero-content {
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
section {
  width: 100%;
  max-width: 100%;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  font-size: 12px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--black);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--black);
}

/* =========================
   TRUST BAR
========================= */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  padding: 30px 60px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--dark);
}

.trust-item i {
  font-size: 20px;
  color: var(--black);
}

/*Services 2*/

/* =========================
   SERVICES SECTION
========================= */

section {
  padding: 90px 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title span {
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gray);
  text-transform: uppercase;
}

.section-title h2 {
  font-size: 34px;
  margin-top: 10px;
  color: var(--black);
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.service-card {
  background: var(--white);
  padding: 30px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card i {
  font-size: 28px;
  margin-bottom: 15px;
  color: var(--black);
}

.service-card h3 {
  font-size: 16px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13px;
  color: var(--gray);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

/* =========================
   PORTFOLIO / DEMOS
========================= */

.portfolio {
  background: #f8f8f8;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* DEMO CARD */

.demo-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.4s;
}

.demo-card:hover {
  transform: translateY(-10px);
}

.demo-preview {
  height: 220px;
  max-width: 1600px;
  overflow: hidden;
  background: #000;
}

.demo-preview iframe {
  width: 100%;
  height: 100%;
  border: none;
  transform: scale(1.05);
}

/* =========================
   LUXURY DEMO
========================= */

.demo-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.demo-card:hover{
    transform:translateY(-8px);
}

.demo-preview{
    position:relative;
    height:420px;
    background:#f5f5f5;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
}


/* =========================
   DEVICE WRAPPER
========================= */

.device-wrapper{
    position: relative;
    width: 100%;
    height: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================= DEVICE WRAPPER ========================= */
.device-wrapper{
    position: relative;
    width: 100%;
    height: 420px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ========================= DESKTOP MOCKUP ========================= */
.desktop-preview{
    width:95%;
    max-width:1200px;
    height:440px;
    margin:0 auto;
    overflow:hidden;
    border-radius:18px;
    background:#111;
    position:relative;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.desktop-preview iframe{
    position:absolute;
    top:38px;
    left:50%;
    width:1020px;
    height:1080px;
    border:none;
    transform:translateX(-50%) scale(.38);
    transform-origin:top center;
    pointer-events:none;
}

.desktop-preview::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:38px;
    background:#1c1c1c;
    z-index:5;
}

.desktop-preview::after{
    content:"";
    position:absolute;
    top:14px;
    left:18px;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ff5f57;
    box-shadow:
      18px 0 #febc2e,
      36px 0 #28c840;
    z-index:6;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px){

    .desktop-preview{
        height: 380px;
    }

    .desktop-preview iframe{
        width: 1280px;
        height: 900px;

        transform: translateX(-50%) scale(0.30);
        transform-origin: top center;
    }
}
/* =========================
   MOBILE
========================= */
@media (max-width: 768px){

    .desktop-preview iframe{
        width: 1020px;
        height: 1000px;

        transform: translateX(-50%) scale(0.22);
    }

}


.desktop-preview{
    border:1px solid rgba(255,255,255,.08);
    box-shadow:
      0 30px 80px rgba(0,0,0,.18),
      0 10px 25px rgba(0,0,0,.08);
}

/* Desktop iframe */


/* ========================= MOBILE MOCKUP ========================= */
.mobile-preview{
    position: absolute;
    right: 30px;
    bottom: -15px;

    width: 130px;
    height: 260px;

    overflow: hidden;
    background: #000;
    border: 6px solid #111;
    border-radius: 30px;

    box-shadow: 0 20px 45px rgba(0,0,0,.35);
    z-index: 10;
}

/* Mobile iframe */
.mobile-preview iframe{
    /* width: 375px; */
    width: 355px;
    height: 812px;
    border: none;
    margin: auto;
    transform: scale(0.34);
    transform-origin: top left;

    pointer-events: none;
}


/* =========================
   TABLET (768x1024) 
========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .desktop-preview{
        width: 100%;
        max-width: 100%;
        height: 500px;
    }

    .desktop-preview iframe{
        width: 1280px;
        height: 900px;

        transform: translateX(-50%) scale(0.45);
        transform-origin: top center;
    }
}



/* =========================
   TABLET LANDSCAPE / iPad AIR (820x1180)
========================= */
@media (min-width: 768px) and (max-width: 1024px) {

    .navbar{
        padding: 15px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* FORCE desktop navbar layout */
    .nav-links{
        display: flex !important;
        flex-direction: row;
        position: static;
        background: transparent;
        padding: 0;
        gap: 20px;
    }

    .nav-links.active{
        display: flex !important;
        position: static;
    }

    .menu-toggle{
        display: none !important;
    }

    /* KEEP logo visible */
    .logo{
        display: block !important;
        z-index: 10;
    }

    /* KEEP button visible */
    .desktop-whatsapp,
    .nav-btn{
        display: flex !important;
        z-index: 10;
    }
}


/* ========================= DEMO CARD ========================= */
.demo-card{
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,.08);
    transition: all .4s ease;
}

.demo-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,.12);
}

/* ========================= INFO ========================= */
.demo-info{
    padding: 25px;
}

.demo-info h3{
    font-size: 20px;
    margin-bottom: 10px;
    color: #111;
}

.demo-info p{
    color: #777;
    line-height: 1.6;
    font-size: 14px;
}

.price{
    font-weight: 700;
    margin: 15px 0;
    color: #111;
}

/* ========================= BUTTONS ========================= */
.demo-buttons{
    display: flex;
    gap: 12px;
}

.view-btn{
    flex: 1;
    text-align: center;
    background: #111;
    color: #fff;
    padding: 12px;
    border-radius: 30px;
    text-decoration: none;
    transition: .3s;
    font-size: 13px;
}

.view-btn:hover{
    background: #333;
}

.buy-btn{
    flex: 1;
    background: transparent;
    border: 1px solid #111;
    border-radius: 30px;
    cursor: pointer;
    transition: .3s;
    font-size: 13px;
}

.buy-btn:hover{
    background: #111;
    color: #fff;
}


/* DEMO INFO */

.demo-info {
  padding: 20px;
}

.demo-info h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.demo-info p {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 15px;
  line-height: 1.5;
}

.price {
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--black);
}

/* BUTTONS */

.demo-buttons {
  display: flex;
  gap: 10px;
}

.view-btn {
  flex: 1;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.view-btn:hover {
  background: #333;
}

.buy-btn {
  flex: 1;
  border: none;
  border-radius: 30px;
  background: transparent;
  border: 1px solid var(--black);
  cursor: pointer;
  font-size: 13px;
  transition: 0.3s;
}

.buy-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* =========================
   WHY US SECTION
========================= */

.why-us {
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.why-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.why-card i {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--black);
}

.why-card h3 {
  font-size: 14px;
}

.why-card:hover {
  transform: translateY(-8px);
  background: var(--white);
}

/* =========================
   CTA SECTION
========================= */

.cta {
  background: linear-gradient(135deg, #111, #222);
  color: var(--white);
  text-align: center;
  padding: 100px 60px;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  font-size: 14px;
  color: #bbb;
  max-width: 700px;
  margin: auto;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--white);
  color: var(--black);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: scale(1.05);
}

/* =========================
   FOOTER
========================= */

footer {
  background: #0f0f0f;
  color: var(--white);
  padding: 80px 60px 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-about h3 {
  font-size: 20px;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.footer-about p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.7;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--white);
}

.footer-links a,
.footer-social a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  margin-bottom: 10px;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 12px;
  color: #777;
}

/* =========================
   POPUP MODAL
========================= */

.popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.popup-content {
  background: var(--white);
  width: 90%;
  max-width: 500px;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.close-popup {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 22px;
  cursor: pointer;
}

.popup-content h3 {
  margin-bottom: 15px;
}

.popup-content p {
  font-size: 13px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5;
}

.popup-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.popup-content ul li {
  font-size: 13px;
  margin-bottom: 5px;
}

.popup-whatsapp {
  display: block;
  text-align: center;
  background: #25D366;
  color: white;
  padding: 12px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 15px;
  transition: 0.3s;
}

.popup-whatsapp:hover {
  transform: scale(1.05);
}




/*NavLink*/
.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 20px;
  background: rgba(0,0,0,0.9);
  padding: 20px;
  border-radius: 10px;
}
/* =========================
   ANIMATIONS
========================= */

section {
  opacity: 1;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

section.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   RESPONSIVE DESIGN
========================= */

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {

  .navbar {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 32px;
  }

  .trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 60px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 13px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* POLICY */
.hero{
    background:linear-gradient(rgba(0,0,0,.70),rgba(0,0,0,.70)),
    url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') center/cover;
    color:white;
    min-height:500px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    width:100%;
    text-align:center;
}

.hero p{
    max-width:800px;
    margin:0 auto;
    color:#d9d9d9;
    text-align:center;
}
section {
  transform: translateY(0);
}
section:not(.hero) {
  padding: 90px 60px;
}
/* CONTENT */

.policy-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:30px;
}
.policy-card h2{
    margin-bottom:15px;
    color:var(--black);
}
.policy-card p{
    color:#444;
    margin-bottom:15px;
}
.policy-card ul{
    padding-left:25px;
    margin-top:10px;
}
.policy-card li{
    margin-bottom:10px;
}

.highlight{
    background:#f3f3f3;
    border-left:5px solid var(--black);
    padding:20px;
    margin-top:20px;
    border-radius:10px;
}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

.policy-card{
    padding:25px;
}

}

@media (min-width: 769px) and (max-width: 1024px){

    .footer-grid{
        grid-template-columns: 2fr 1fr 1fr 1fr !important;
    }

}



/* TESTIMONIAL SECTION */

.testimonial-slider{
    position:relative;
    max-width:850px;
    margin:auto;

    min-height:280px; 
}

.testimonial{

    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

    transition:.5s ease;

    background:#fff;

    border-radius:24px;

    padding:40px 35px;

    text-align:center;

    box-shadow:
    0 15px 40px rgba(0,0,0,.08);

    min-height:280px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.testimonial.active{
    opacity:1;
    visibility:visible;
}

.testimonial p{
    font-size:16px;
    line-height:1.8;

    min-height:90px; /* same text area */
}

.testimonial h4{
    margin-top:15px;
    margin-bottom:12px;
}

.stars{
    color:#f5b301;
}

/* MOBILE */

@media(max-width:768px){

    .testimonial-slider{
        min-height:330px;
    }

    .testimonial{
        min-height:330px;
        padding:30px 22px;
    }

    .testimonial p{
        min-height:120px;
    }
}
.stars{
    display:flex;
    justify-content:center;
    gap:5px;
}

.stars i{
    color:#f7b500;
    font-size:18px;
}

.testimonial-dots{
    margin-top:25px;
}


@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* PROMO PRICE */


.promo-price{
    display:grid;
    gap:6px;
    margin:15px 0;
}

.promo-label{
    width:max-content;
    background:#111;
    color:#fff;
    padding:5px 10px;
    border-radius:20px;
    font-size:12px;
    font-weight:800;
}

.original-price{
    color:#d60000;
    text-decoration:line-through;
    font-size:15px;
    font-weight:700;
}

.discount-price{
    color:#111;
    font-size:20px;
    font-weight:900;
}

.promo-status{
    color:#777;
    font-size:12px;
}

.promo-price{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin:15px 0;
}

.original-price{
    color:#d60000;
    text-decoration:line-through;
    font-size:15px;
    font-weight:800;
}

.discount-badge{
    background:#d60000;
    color:#fff;
    padding:5px 10px;
    border-radius:30px;
    font-size:12px;
    font-weight:900;
    animation:discountPulse 1.5s infinite;
}

.discount-price{
    color:#111;
    font-size:20px;
    font-weight:900;
}

@keyframes discountPulse{
    0%{
        transform:scale(1);
        box-shadow:0 0 0 rgba(214,0,0,.4);
    }

    50%{
        transform:scale(1.08);
        box-shadow:0 0 18px rgba(214,0,0,.45);
    }

    100%{
        transform:scale(1);
        box-shadow:0 0 0 rgba(214,0,0,.4);
    }
}






/* Hidden websites */

.extra-demo{
    display:none;
}

/* Button */

.portfolio-toggle{
    text-align:center;
    margin-top:40px;
}

#togglePortfolio{

    border:none;

    background:#111;

    color:#fff;

    padding:14px 30px;

    border-radius:40px;

    cursor:pointer;

    font-size:15px;
    font-weight:700;

    transition:.3s;
}

#togglePortfolio:hover{
    transform:translateY(-3px);
}