
:root {
    --primary-color: #d4af37;
    --secondary-color: #333;
    --light-color: #f9f9f9;
    --dark-color: #121212;
    --accent-color: #8a5a44;
    --transition: all 0.3s ease;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Poppins', sans-serif;
}

* {
    box-sizing: border-box;
}

*,
*::after,
*::before {
    box-sizing: border-box;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    font-family: "Baloo 2", serif;
}

body.no-scroll {
  overflow: hidden;
}


.section_title {
    margin-bottom: 20px;
    position: relative;
}

.section_title::before {
    content: "";
    height: 1px;
    background: #eeeded;
    position: absolute;
    left: 0;
    right: 15px;
    top: 50%;
}

.section_title h2 {
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    line-height: 30px;
    text-transform: capitalize;
    padding-right: 20px;
    background: #ffffff;
    color: #000000;
    font-size: 24px;
    font-weight: 400;

}

.btn-vp {
    background: #d4af37;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;

}

.btn-vp:hover {
    background: #f7c213;
    color: #fff;

    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;

}

.my-confirm-btn {
    background-color: #ffd900 !important; /* Blue */
    color: rgb(0, 0, 0) !important;
  }

  .my-cancel-btn {
    background-color: #7e1919 !important; /* Gray */
    color: white !important;
  }

  .view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(to right, #ffaf40, #ffcd70);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(255, 175, 64, 0.3);
    transition: all 0.3s ease;
  }

  .view-all-btn i {
    transition: transform 0.3s ease;
  }

  .view-all-btn:hover {
    background: linear-gradient(to right, #ffa726, #ffca60);
    box-shadow: 0 6px 16px rgba(255, 165, 0, 0.4);
  }

  .view-all-btn:hover i {
    transform: translateX(4px);
  }

  ::-webkit-scrollbar-thumb {
  background-color: #e0e0e0;
  border: 4px solid transparent;
  border-radius: 8px;
  background-clip: padding-box;  
}

::-webkit-scrollbar {
  width: 14px;
}