* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.hero-section11 {
    width: 100%;
    height: 92vh;
    background: 
    linear-gradient(to right, rgba(0, 0, 0, 0.929), rgba(0, 0, 0, 0.089), rgba(0, 0, 0, 0.893)),
    url("https://ik.imagekit.io/sjnshacs8/propertygallery/6537c31706d0f_sobhaarena3.webp");
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #edf5f8; */
}

.broucherDownloadContainer {
    transition: all .5s ease;
}

.broucherDownloadContainer.broucherActive {
    left: 0;
    transition: all .5s ease;
}

.costSheetDownloadContainer {
    transition: all .5s ease;
}
.costSheetDownloadContainer.costSheetActive {
    left: 0;
    transition: all .5s ease;
}

.mobileNavlinkContainer {
    transition: all .5s ease;
}

.mobileNavlinkContainer.active {
    /* display: block; */
    right: 0;
    transition: all .5s ease;
}

html {
    scroll-behavior: smooth;
  }

/* price page css start */


.priceContainer {
    width: 100%;
    /* height: 92vh; */
    /* background-image: url("./Assist/homebanner.jpg"); */
    background-image:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.93)),
        url('./Assist/sobhamagnum.webp');
    /* background-position: center; */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /* background-color: #edf5f8; */
}

.bg-gold-gradient{
  background: linear-gradient(to right, #FFD95A, #B8860B);
}

.text-gold-gradient{
  color: linear-gradient(to right, #FFD95A, #B8860B);
}

/* ================== */


@keyframes colorCycle {
    0% { background-color: #ff0000; }
    /* 50% { background-color: #021442; } */
    100% { background-color: #9b6d07; }
}

.animate-color-change {
    animation: colorCycle 1s infinite alternate;
}