@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400;500;600&display=swap');
* {
  font-family: 'Sen', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}
    
html{
    scroll-behavior: smooth;
}
    
.navbar {
    position: sticky;
    top: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
    z-index: 100;
}
    
.navbar-brand img {
  max-height: 40px; 
}
    
@media(max-width: 1200px){
    .navbar-brand img {
        max-height: 35px; 
    }

    .navbar {
        padding: 0.8rem 0.8rem !important; 
        text-align: center;
    }
}
  
.navbar-toggler{
    color: #8c1848 !important;
    font-size: 1.2rem;
    font-weight: bold;
}
      
.navbar-nav {
    margin-left: auto;
}
    
.nav-link{
    font-size: 16px;
    letter-spacing: 1px;
    font-weight: 500;
    color: #000;
}
    
.nav-link:hover{
    color: #8c1848;
}

/*----------------------css popup code for all login forms one time written and apply for all-------------------------*/
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    overflow: auto;
  }
  
  .popup-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border: 1px solid #888;
    max-width: 450px;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
  }
  
  .close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .popup-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #8c1848;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
  }
  
  .popup-content .labelpara {
    display: block;
    margin-bottom: 10px;
    font-size: 12px;
    margin-top: 10px;
  }
  
  .popup-content input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  .popup-content .form-group {
    margin-bottom: 20px;
  }
  
  .input-group-prepend .input-group-text {
    background-color: #8c1848;
    border: 1px solid #8c1848;
    border-radius: 4px;
    padding: 8px;
    color: #fff;
  }
  
  .input-group-text i {
    font-size: 1.2rem; 
  }
  
  .submit-button {
    font-size: 1.2rem;
    display: block;
    width: 100%;
    padding: 8px 16px;
    background-color: #721039;
    color: #fff;
    font-weight: 400;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .submit-button:hover {
    background-color: #8c1848;
    color: #fff;
  }
  
  @media (max-width: 600px) {
    .popup-content {
      margin: 20px;
    }
  }
  
  @media (max-width: 450px) {
    .popup-content h2 {
      font-size: 1.2rem;
    }
  }

/*----------------------Home page section------------------*/
.carousel {
    position: relative;
}

.item-bg1 {
    background-image: url(images/home1.webp);
    background-position: top;
    background-size: cover;
    height: 700px;
    object-fit: cover;
}

.item-bg2 {
    background-image: url(images/home2.jpg);
    background-position: top;
    background-size: cover;
    height: 700px;
    object-fit: cover;
}

.item-bg3 {
    background-image: url(images/home3.jpg);
    background-position: top;
    background-size: cover;
    height: 700px;
    object-fit: cover;
}

.item-bg4 {
    background-image: url(images/home4.webp);
    background-position: top;
    background-size: cover;
    height: 700px;
    object-fit: cover;
}

.carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 15;
    display: flex;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-indicators li {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    margin: 0 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    text-align: center;
    transition: opacity 0.15s ease;
    color: #fff;
}

.carousel-control-prev {
    left: 15px;
}

.carousel-control-next {
    right: 15px;
}

.carousel-control-prev span,
.carousel-control-next span {
    background-color: #000;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
    opacity: 1;
    transition: transform 0.3s, opacity 0.3s;
}

.carousel-control-prev:hover span,
.carousel-control-next:hover span {
    opacity: 1;
    transform: scale(1);
}

.background-text {
    background-color: rgba(0, 0, 0, 0.38);
    box-shadow: -10px -7px 20px 2px rgba(0, 0, 0, 0.58);
    padding: 30px;
    position: absolute;
    top: 20%;
    right: 5%;
    min-width: 300px;
    max-width: 400px;
    z-index: 10;
    text-align: center;
}

.background-text h4 {
    color: #fff;
    text-transform: uppercase;
    font-size: 20px;
    margin: 7px 0;
}

.background-text span {
    color: #fff;
    margin: 10px 0;
}

.pro-tag-line {
    font-size: 16px;
    font-weight: bold;
}

.background-text .pro-price {
    padding: 0.1vw 0.8vw 0.3vw;
    font-size: 25px;
    font-weight: 800;
    line-height: 28px;
    margin-bottom: 15px;
}

.brochure-btn {
    display: inline-block;
    background: #8c1848;
    color: #fff;
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .carousel-inner {
        height: auto;
    }

    .carousel-item {
        background-position: center;
        height: 400px;
    }

    .carousel-item.active {
        display: block;
    }

    .background-text {
        position: static;
        margin: 20px auto;
        width: 90%;
        box-shadow: none;
        padding: 20px;
        background-color: #4c192e;
    }

    .carousel-indicators {
        display: none;
    }

    .pro-price {
        font-size: 20px;
    }

    .brochure-btn {
        width: 100%;
        font-size: 14px;
        padding: 10px;
        background-color: #873e5c;
    }

    .background-text h4 {
        font-size: 18px;
    }
}

@media(max-width: 768px){
   .carousel-control-prev span, 
   .carousel-control-next span {
      display: none;
   }
}

/*-----------------Overview Section----------------------*/
.overview {
    position: relative;
    background-image: url(images/over-bg.png);
    background-position: center center;
    background-size: 100%;
}

.over {
    padding: 70px 0;
}

.img_section {
    position: relative;
    overflow: hidden;
}

.main_img {
    width: 100%;
    max-width: 500px;
    height: 500px;
    display: block;
    margin: 0 auto;
}

.title_section h4.pro_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #8c1848;
}

.title_section .pro_title::before {
    content: "";
    position: absolute;
    top: 15px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}

.title_section h3.title {
    font-weight: 600;
}

.content_section p {
    line-height: 1.6;
    color: #777777;
}

.banner_btn button {
    font-size: 18px;
    text-transform: capitalize;
    letter-spacing: 1px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.icon-next {
    position: relative;
    top: -0.1em;
    margin-left: 0.6em;
    vertical-align: middle;
    display: inline-block;
    width: 0.94em;
    height: 0.75em;
    background: url(images/next-arrow.png) no-repeat;
    background-size: 0.94em 0.75em;
    filter: brightness(0.5);
}

.overview::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    opacity: 0.1;
    text-transform: uppercase;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    text-align: center;
    writing-mode: vertical-rl;
}

@media(max-width: 991px){
    .overview::after {
        display: none;
    }

    .over {
        padding: 30px 0;
    }
    
    .title_section h4.pro_title {
        margin-top: 20px;
    }

    .ptb{
        padding: 20px 0;
    }

}

/*----------------Project Highlights------------*/
.highlight_section {
    background-image: url(images/highlight-bg.png);
    position: relative;
    background-repeat: no-repeat;
    background-position: left center;
    background-color: #f8f8f8;
    z-index: 1;
}

.pro-high{
    padding: 70px 0;
}

.highlight_section span.number {
    box-shadow: #d6b9c6 0 0 0 5px inset;
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    display: inline-block;
    text-align: center;
    border-radius: 3px;
    padding: 10px 16px;
}

.highlight_section::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    z-index: -1;
    opacity: .1;
    text-transform: uppercase;
    left: 25px;
    writing-mode: tb-rl;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    height: 100%;
    text-align: center;
}

.highlight_section ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.highlight_section .highlight_point {
    padding-left: 8px;
}

.highlight_section .image_section img {
    height: 100%;
    height: 600px;
    object-fit: cover;
    width: 600px;
}

@media (max-width: 1200px) {
    .highlight_section .image_section img {
        width: 100%;
    }
}

@media (max-width: 992px) {
    .highlight_section .image_section img {
        width: 100%;
    }

    .highlight_section span.number {
        font-size: 18px;
        padding: 8px 14px;
    }

    .highlight_section ul li {
        font-size: 16px;
    }

    .highlight_section::after {
       display: none;
    }

}

@media (max-width: 768px) {
    .highlight_section .image_section img {
        width: 100%;
        height: auto;
    }

    .highlight_section {
        background-position: center center;
    }

    .highlight_section span.number {
        font-size: 16px;
        padding: 8px 12px;
    }

    .highlight_section ul li {
        font-size: 16px;
    }

    .highlight_section .title_section h3.title {
        font-size: 20px;
    }

    .highlight_section .title_section h4.pro_title {
        font-size: 20px;
    }

    .pro-high{
        padding: 20px 0;
    }

}

/*-------------Amenities Section---------------*/
.amenities_sec {
    padding: 70px 0;
    background-color: #eae6db;
    position: relative;
}

.amenities_head {
    text-align: center;
    margin-bottom: 40px;
}

.amenities_head h4.amenities_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #8c1848;
    font-size: 32px;
}

.amenities_head .amenities_title::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}

.amenities_sec::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    opacity: .1;
    text-transform: uppercase;
    right: 24px;
    writing-mode: tb-rl;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    text-align: center;
}

.amenities_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.amenity_item {
    position: relative;
    text-align: center;
    width: 100%;
    max-width: 180px;
    height: 150px;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.amenity_icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.amenity_item h3 {
    font-size: 16px;
    color: #6a6a6a;
    margin-bottom: 5px;
}

@media(max-width: 991px){
    .amenities_sec::after {
       display: none;
    }

    .amenities_sec {
        padding: 20px 0;
    }

}

@media (max-width: 768px) {
    .amenities_head h4.amenities_title {
        font-size: 28px;
    }

    .amenities_head .title {
        font-size: 24px;
    }

    .amenity_item h3 {
        font-size: 16px;
    }
}


/*-------------Configuration Section------------*/
.config_section {
    padding: 70px 0;
}

.config_section .config-item {
    padding: 40px 20px;
    color: #000;
    text-align: center;
    border-radius: 14px;
    background-color: #ebd8bd;
}

.config_head h4.config_title {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
    color: #8c1848;
    font-size: 32px;
}

.config_head .config_title::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}

.config_section .config-item .title h3 {
    background: #000;
    color: #fff;
    width: 100%;
}

.config_section .config-item .title h3 {
    font-size: 20px;
    padding: 10px;
    margin-bottom: 0px;
}

.config_section .config-item .size p {
    font-size: 22px;
    font-weight: 500;
}

.config_section .config-item {
    padding: 30px 15px;
    color: #000;
    text-align: center;
    border-radius: 14px;
    background-color: #f2ece4;
}

.config_section .banner_btn button {
    background-color: #8c1848;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 10px;
}

.config_section .config-item .title {
    border: 1px solid #000;
    padding: 2px;
    margin-bottom: 20px;
}

@media(max-width: 991px){
    .config_section .config-item {
       margin-bottom: 20px;
    }

    .config_section {
        padding: 30px 0;
    }
}

/*-------------Unit Plans------------------*/
.floor_plan {
    position: relative;
    background-color: #f8f8f8;
    padding: 70px 0;
}

.plan_head h4.plan_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #8c1848;
    font-size: 32px;
}

.plan_head .plan_title::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}

.floor_plan::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    opacity: .1;
    text-transform: uppercase;
    right: 24px;
    writing-mode: tb-rl;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    text-align: center;
}

.item_wrap {
    padding: 20px;
    background-color: #ffffff;
}

.floor_plan .img_sec {
    position: relative;
    border: 1px solid #8c1848;
    padding: 8px;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
}

.floor_plan .img_sec img {
    max-width: 100%;
    height: 200px;
    border-radius: 12px;
    filter: blur(2px);
}

.floor_plan .img_sec .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floor_plan .img_sec:hover .overlay {
    opacity: 1;
}

.floor_plan .item_wrap .title {
    background-color: #8c1848;
    color: #fff;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    margin-bottom: 0;
    border-radius: 10px;
}

.view_button {
    background-color: #8c1848;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

@media(max-width: 768px){
    .floor_plan::after {
       display: none;
    }

    .floor_plan {
        padding: 30px 0;
    }

}


/*------------------Gallery Section----------------*/
.gallery_sec {
    position: relative;
    padding: 70px 0;
}

.gallery_head h4.gallery_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #8c1848;
    font-size: 32px;
    text-align: center;
}

.title{
    text-align: center;
}

.gallery_head {
    text-align: center;
}

.gallery_head .gallery_title::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}
  
.portfolio-item {
    list-style-type: none;
    padding: 0;
    margin: 0;
}
  
.portfolio-item li {
    position: relative;
    overflow: hidden;
    padding: 0;
    margin-bottom: 20px;
    flex: 1 0 30%;
    margin: 15px;
}
  
.portfolio-item img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}
  
.portfolio-item li:hover img {
    transform: scale(1.1);
}
  
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
  
.portfolio-item li:hover .portfolio-overlay {
    opacity: 1;
}
  
.overlay-content {
    text-align: center;
}
  
.magnify-icon {
    color: #fff;
}
  
.magnify-icon p {
    margin: 0;
}
  
.magnify-icon i {
    font-size: 24px;
    transition: color 0.3s ease;
}
  
.portfolio-item li:hover .magnify-icon i {
    color: #000; 
}
  
.gallery_sec::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    z-index: -1;
    opacity: .1;
    text-transform: uppercase;
    left: 25px;
    writing-mode: tb-rl;
    top: 50%;
    transform: rotate(180deg) translateY(50%);
    height: 100%;
    text-align: center;
}

@media (max-width: 992px) {
    .gallery_head h4.gallery_title {
        font-size: 28px;
    }

    .gallery_sec::after {
        display: none;
    }

    .portfolio-item img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }

    .gallery_sec {
        padding: 20px 0;
    }

}

@media (max-width: 768px) {
    .gallery_head h4.gallery_title {
        font-size: 25px;
    }

    .title {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .gallery_head h4.gallery_title {
        font-size: 25px;
    }

    .title {
        font-size: 20px;
    }
}

/*---------------Location Advantage------------*/
.location_advantage_sec {
    padding: 70px 0;
    background-color: #f7eef2;
    position: relative;
}

.location_head {
    text-align: center;
    margin-bottom: 40px;
}

.location_head h4.location_title {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #8c1848;
    font-size: 32px;
}

.location_head .location_title::before {
    content: "";
    position: absolute;
    top: 20px;
    right: -70px;
    height: 1px;
    width: 60px;
    background-color: #8c1848;
}

.location_head .title {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.location_head .description {
    font-size: 14px;
    color: #666;
    margin-top: 0;
}

.location_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.location_list {
    flex: 1;
    max-width: 400px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.location_list li {
    font-size: 16px;
    color: #333;
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
}

.map_container {
    flex: 1;
    max-width: 600px;
}

.map_container iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

.location_advantage_sec::after {
    content: attr(data-name);
    font-size: 80px;
    position: absolute;
    line-height: 100px;
    color: #6d6d6d;
    font-weight: 600;
    opacity: .1;
    text-transform: uppercase;
    right: 24px;
    writing-mode: tb-rl;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    text-align: center;
}

.location_icon{
    color: #8c1848;
}


@media (max-width: 768px) {
    .location_advantage_sec {
        padding: 20px 0;
    }

    .location_content {
        flex-direction: column;
    }

    .location_head .title {
        font-size: 20px;
    }


    .location_head h4.location_title {
        font-size: 25px;
    }
    
    .location_head .location_title::before {
       display: none;
    }

    .location_advantage_sec::after {
        display: none;
    }

    .location_list {
        order: 1;
        margin-bottom: 20px;
    }

    .map_container {
        order: 2;
    }

    .location_head .title {
        font-size: 18px;
    }

    .location_head .description {
        font-size: 10px;
    }

    .location_list li {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }

    .location_icon {
        font-size: 18px;
    }

    .map_container iframe {
        height: 300px;
    }

    .location_advantage_sec::after {
        display: none;
    }
}


/*-----------------Contact Section------------------*/
.contact-container {
    position: relative;
    padding: 50px 0;
}

.contact-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #282525;
    z-index: 1;
}

.contact-container .container {
    position: relative;
    z-index: 2;
}

.left-col-custom {
    color: #fff;
    padding-right: 120px;
}

.contact-us-ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-us-ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-us-ul li p {
    margin: 0;
    line-height: 1.5;
    word-break: break-word;
}

.contact-us-ul li span {
    display: block;
    padding-bottom: 5px;
    font-size: 15px;
    font-weight: 600;
}

.contact-us-ul li p a {
    color: #fff;
    text-decoration: none;
}

.contact-details-icon {
    width: 50px;
    height: 50px;
    background: rgba(229, 142, 212, 0.13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details-icon .img-fluid {
    width: auto;
    height: 20px;
    filter: invert(1);
}

.contact-us-ul li.rera-li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.rera-img {
    height: 80px;
    width: auto;
}

.contact-us-footer {
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
    padding-bottom: 70px;
    width: 80%;
    margin-left: 14%;
}

.contact-us-footer::before {
    position: absolute;
    left: -15px;
    top: -15px;
    width: 100%;
    height: 100%;
    content: "";
    background: #fff;
    z-index: -1;
}

.contact-us-footer .custom-heading {
    font-size: 30px;
    margin-bottom: 10px;
    color: #8c1848;
}

.contact-us-footer .form-control {
    border-radius: 0;
    height: 60px;
    border: none;
    border-bottom: 1px solid #000;
    color: #000;
}

.btn-custom {
    padding: 8px 20px;
    font-size: 18px;
    margin-top: 15px;
    background-color: #8c1848;
    color: #fff;
    border-radius: 0;
    border: none;
    cursor: pointer;
}

.btn-custom:hover {
    background-color: #49001e;
}

.disclaimer-p {
    font-size: 13px;
    color: #fff !important;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .left-col-custom {
        padding-right: 80px;
    }

    .contact-us-footer {
        width: 90%;
        margin-left: 5%;
    }
}

@media (max-width: 992px) {
    .left-col-custom {
        padding-right: 40px;
        text-align: center;
    }

    .contact-us-footer {
        width: 100%;
        margin-left: 0;
        padding: 30px 20px 60px;
    }

    .contact-us-ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-details-icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .left-col-custom {
        padding-right: 20px;
        text-align: center;
    }

    .contact-us-footer .custom-heading {
        font-size: 24px;
    }

    .contact-us-footer .form-control {
        height: 50px;
    }

    .btn-custom {
        padding: 6px 15px;
        font-size: 16px;
    }

    .disclaimer-p {
        font-size: 12px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 20px 10px;
    }

    .left-col-custom {
        padding: 0 10px;
        text-align: center;
    }

    .contact-us-ul li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 5px;
    }

    .contact-us-footer {
        width: 100%;
        margin-left: 0;
        padding: 20px 15px 50px;
    }

    .contact-us-footer .custom-heading {
        font-size: 20px;
    }

    .disclaimer-p {
        font-size: 11px;
        margin-top: 20px;
        margin-bottom: 40px;
    }
}


/*-----------------------------------whatsapp, phone, and enquiry code-----------------------*/
#desktop-view {
    position: fixed;
    bottom: 20px; 
    right: 20px; 
    z-index: 9999; 
  }
  
  .icn {
    margin: 15px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    animation: zoomIcons 0.6s ease-in-out infinite; 
  }
  
  @keyframes zoomIcons {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2); 
    }
    100% {
        transform: scale(1);
    }
  }
  
  .icn:hover {
    animation-play-state: paused; 
  }
  
  @keyframes gradient {
    0%{
      background-position: 0 50%;
    }
    50%{
      background-position: 100% 50%;
    }
    100%{
      background-position: 0 50%;
    }
  }
  
  @media(max-width: 768px){
    .icn{
      width: 20px;
      height: 20px;
    }
  }
  
  @media(max-width: 991px){
    #desktop-view{
      display: none;
    }
  }
  
  /*-------------------------mobile section contact-----------------------*/
  .mob-action {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #49001e;
    box-shadow: 0 1px 6px 2px rgb(0 0 0 / 40%);
    z-index: 1030;
  }
  
  .mob-action ul {
    display: flex;
    flex-direction: row;
    align-content: center;
    list-style: none;
    padding: 0;
    margin: 10px 0;
    justify-content: space-around;
    align-items: center;
  }
  
  .mobile-view {
    display: none;
  } 
  
  /*------------------------media screen for mobile view----------------------*/
  @media (max-width: 991px) {
    .mobile-view {
      display: block;
    } 
  }

