*{
    margin: 0;
    border: 0;
    box-sizing: border-box;
    /* font-family: "Nunito Sans", serif; */
}
.hovers{
    transition: all 0.2s;
    cursor: pointer;
}
.hovers:hover{
    opacity: 0.8;
}
.text-black{
  color: #000 !important;
}
.main-color{
  color: #A82062;
}
.main-title{
  color: #A82062;
  font-size: 28px;
}
.main-desc{
  color: #292F45;
  line-height: 1.3em;
  font-size: 22px;
}
.nav-link, .nav-item select{
  font-size: 18px !important;
  color: #732D28 !important;
}
.nav-link:hover, .nav-item select:hover{
  color: rgb(168,32,98) !important;
  opacity: 0.6;
}
header{
  background: url(../img/bg.jpg);
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.contact-btn{
  background-color: #A82062CC;
  cursor: pointer;
  transition: all 0.6s;
}
.contact-btn:hover{
  background-color: #252e39;
  color: #fff;
}
footer{
  background-color: #292f45;
}
.icons{
  color:#929292 ;
}
.chat-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}
.chat-icon {
    background: #A82062;
    color: #252e39;
    border-radius: 50%;
    padding: 15px;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}
.chat-window {
    display: none;
    position: absolute;
    bottom: 60px;
    right: 0;
    width: 320px;
    border: 1px solid #ccc;
    border-radius: 10px;
    background: white;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}
.chat-header {
    padding: 10px 20px;
    background: #A82062;
    color: white;
    display: flex;
    justify-content: space-between;
    border-radius: 10px 10px 0 0;
}
.chat-body {
    padding: 10px;
    min-height: 350px;
    overflow-y: auto;
}
.chat-footer {
    padding: 10px;
    display: flex;
    border-top: 1px solid #ccc;
}
.chat-footer input {
    flex: 1;
    padding: 5px;
    border: 1px solid #ccc;
}
.chat-footer button {
    background: #007773;
    color: white;
    border: none;
    padding: 5px 10px;
}
