@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
* {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  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;
  padding: 5px !important;
}
    
.navbar-brand img {
  max-height: 45px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 35px; 
  }

  .navbar {
    padding: 0.6rem 0.6rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
  font-weight: bold;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
    
.nav-link:hover{
  color: #947854;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(5px);
}

.popup-content {
  background: linear-gradient(135deg, #ffffff, #f7ecd9);
  margin: 5% auto;
  padding: 35px;
  border: 2px solid #c5a67e;
  max-width: 450px;
  position: relative;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
}

.close-icon:hover {
  transform: rotate(90deg);
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #002147;
  font-size: 24px;
  text-align: center;
  font-weight: bold;
  font-style: italic;
}

.popup-content .labelpara {
  display: block;
  margin-bottom: 12px;
  font-size: 12px;
  color: #333;
  text-align: center;
}

.popup-form-group {
  margin-bottom: 22px;
  position: relative;
}

.popup-input-group {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 6px;
  padding: 5px;
  border: 1px solid #c5a67e;
  transition: all 0.3s ease-in-out;
}

.popup-input-group:focus-within {
  border-color: #c5a67e;
  box-shadow: 0 0 8px rgb(219, 209, 175);
}

.popup-input-group-prepend .popup-input-group-text {
  background-color: #c5a67e;
  border: 1px solid #c5a67e;
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  color: #002147;
  font-size: 1rem;
}

.popup-input-group-text i {
  font-size: 1.2rem;
}

.popup-form-control {
  width: 100%;
  padding: 12px;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #002147;
}

.submit-button {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: #e9caa1;
  color: #002147;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.submit-button:hover {
  background: #fde6c9;
  color: #002147;
  box-shadow: 0 6px 12px rgb(9, 56, 40, 0.5);
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.4rem;
  }
}

/*-----------------Home Page section---------------*/
.for-desktop {
  display: block;
  width: 100%;
  height: auto;  
}
  
.for-mobile {
  display: none;
  max-width: 768px !important; 
  width: 100%;   
  height: auto;   
}
  
@media (max-width: 768px) {
  .for-desktop {
    display: none;
  }

  .for-mobile {
    display: block;
  }
}

/*---------------overview section-----------------*/
/* .lodhaover-section {
  padding: 50px 40px;
  background-color: #f8f6f2;
  border-top: 1px solid #947854;
}

.project-title {
  color: #002147;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  border-left: 4px solid #c5a67e;
  padding-left: 15px;
  margin-bottom: 15px;
}

.project-overview {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-gold {
  color: #c5a67e;
  margin-right: 8px;
}

.project-highlights li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.lodha-img {
  border: 4px solid #c5a67e;
}

@media (max-width: 768px) {
  .lodhaover-section {
    padding: 20px 15px;
  }

  .project-title {
    font-size: 20px;
    border-left: 3px solid #c5a67e;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .project-overview {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .project-highlights li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .lodha-img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }

  .row.align-items-center {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: column !important;
  }

} */

.lodhaover-section {
  padding: 50px 40px;
  background-color: #f8f6f2;
  border-top: 1px solid #947854;
}

.project-title {
  color: #002147;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  border-left: 4px solid #c5a67e;
  padding-left: 15px;
  margin-bottom: 15px;
}

.project-overview {
  color: #444;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.text-gold {
  color: #c5a67e;
  margin-right: 8px;
}

.project-highlights li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.lodha-img {
  border: 4px solid #c5a67e;
}

@media (max-width: 768px) {
  .lodhaover-section {
    padding: 20px 15px;
  }

  .project-title {
    font-size: 20px;
    border-left: 3px solid #c5a67e;
    padding-left: 10px;
    margin-bottom: 10px;
  }

  .project-overview {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .project-highlights li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .lodha-img {
    margin-bottom: 20px;
    width: 100%;
    height: auto;
  }

  .row.align-items-center {
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    flex-direction: column !important;
  }
}


/*---------------------Amenities Section-------------------*/
/* .amenities-tabs-section {
  background-color: #fcf7ef;
  padding: 50px 0;
  border-top: 1px solid #947854;
}

.amenities-title {
  font-size: 28px;
  font-weight: 700;
  color: #002147;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.amenities-underline {
  width: 80px;
  height: 4px;
  background-color: #c5a67e;
  border-radius: 2px;
  margin-bottom: 40px;
}

.amenities-tab-menu {
  list-style: none;
  padding: 0;
}

.custom-tab-item {
  margin: 0 15px;
}

.custom-tab-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #c5a67e;
  display: inline-block;
  border-bottom: 3px solid transparent;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.custom-tab-link.active,
.custom-tab-link:hover {
  border-bottom: 3px solid #c5a67e;
  background-color: #f5e7d7;
  color: #002147;
  text-decoration: none;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.amenities-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.amenity-box {
  display: flex;
  align-items: center;
  border: 1px solid #c5a67e;
  padding: 8px 20px;
  font-weight: 500;
  color: #222;
  font-size: 16px;
  min-height: 60px;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.amenity-icon {
  font-size: 30px;
  color: #b79363;
  margin-right: 15px;
  min-width: 28px;
}

@media (max-width: 991.98px) {
  .amenity-box {
    max-width: calc(50% - 20px);
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .amenity-box {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media(max-width: 768px){
  .amenities-tabs-section {
    padding: 20px 20px;
  }

  .amenities-title {
    font-size: 1.5rem;
  }

  .amenities-underline {
    margin-bottom: 20px;
  }

  .custom-tab-link {
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  .amenity-box {
    font-size: 14px;
  }

} */

.amenities-tabs-section {
  background-color: #fcf7ef;
  padding: 50px 0;
  border-top: 1px solid #947854;
}

.amenities-title {
  font-size: 28px;
  font-weight: 700;
  color: #002147;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.amenities-underline {
  width: 80px;
  height: 4px;
  background-color: #c5a67e;
  border-radius: 2px;
  margin-bottom: 40px;
}

.amenities-tab-menu {
  list-style: none;
  padding: 0;
}

.custom-tab-item {
  margin: 0 15px;
}

.custom-tab-link {
  font-weight: 600;
  color: #000;
  text-decoration: none;
  padding: 10px 20px;
  background-color: #fff;
  border-bottom: 1px solid #c5a67e;
  display: inline-block;
  border-bottom: 3px solid transparent;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.custom-tab-link.active,
.custom-tab-link:hover {
  border-bottom: 3px solid #c5a67e;
  background-color: #f5e7d7;
  color: #002147;
  text-decoration: none;
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
}

.amenities-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.amenity-box {
  display: flex;
  align-items: center;
  border: 1px solid #c5a67e;
  padding: 8px 20px;
  font-weight: 500;
  color: #222;
  font-size: 16px;
  min-height: 60px;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
}

.amenity-icon {
  font-size: 30px;
  color: #b79363;
  margin-right: 15px;
  min-width: 28px;
}

@media (max-width: 991.98px) {
  .amenity-box {
    max-width: calc(50% - 20px);
    flex: 1 1 calc(50% - 20px);
  }
}

@media (max-width: 576px) {
  .amenity-box {
    max-width: 100%;
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .amenities-tabs-section {
    padding: 20px 20px;
  }

  .amenities-title {
    font-size: 1.5rem;
  }

  .amenities-underline {
    margin-bottom: 20px;
  }

  .custom-tab-link {
    padding: 8px 10px;
    margin-bottom: 10px;
  }

  .amenity-box {
    font-size: 14px;
  }
}

/*--------------------Configuration Section-------------------*/
.config-table-section {
  position: relative;
  background: url('images/config-bg.jpg') no-repeat center center;
  background-size: cover;
}

.config-overlay {
  position: relative;
  background: rgba(0, 0, 0, 0.7); 
  width: 100%;
  height: 100%;
  padding: 50px 0;
}

.config-heading {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.config-underline {
  width: 70px;
  height: 4px;
  background-color: #c5a67e;
  border-radius: 2px;
  margin-top: 8px;
}

.config-table {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid #c5a67e;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.config-table th {
  background-color: #877967;
  color: #fff !important;
  font-weight: 600;
  text-align: left;
}

.config-table th,
.config-table td {
  padding: 16px 20px;
  font-size: 16px;
  color: #333;
  border: 1px solid #e4dfd6;
  vertical-align: middle;
}

.config-table td:first-child {
  font-weight: 600;
  color: #002147;
}

.config-btn {
  padding: 6px 16px;
  font-size: 14px;
  background-color: #eccca3;
  color: #002147;
  border: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.config-btn:hover {
  background-color: #a28964;
  color: #fff;
}

@media (max-width: 768px) {
  .config-heading {
    font-size: 22px;
  }

  .config-table th,
  .config-table td {
    padding: 12px 14px;
    font-size: 15px;
  }
}

@media (max-width: 576px) {
  .config-table-section {
    overflow-x: hidden;
  }

  .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .config-table {
    min-width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
  }

  .config-table th,
  .config-table td {
    font-size: 12px;
    padding: 10px 8px;
    white-space: normal;
  }

  .config-underline {
    width: 50px;
  }

  .config-btn {
    padding: 5px 12px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .config-table th,
  .config-table td {
    font-size: 12px;
    padding: 10px 8px;
  }

  .config-btn {
    font-size: 11px;
    padding: 5px 8px;
    max-width: 100px;
  }
}

/*------------------------Unit Plans Section--------------------*/
.unit-plans-section{
  padding: 60px 20px;
  background-color: #f5e7d7;
}

.unit-heading {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #002147;
}

.unit-underline {
  width: 70px;
  height: 4px;
  background-color: #c5a67e;
  border-radius: 2px;
  margin-top: 8px;
}

.unit-card {
  background-color: #fff;
  border: 1px solid #947854;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.unit-img {
  height: 220px;
  object-fit: contain;
  filter: blur(2px);
  width: 100%;
}

.unit-title {
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  color: #002147;
}

.unit-btn{
  border: 1px solid #c5a67e;
  border-radius: 50px;
  margin-top: 10px;
  padding: 8px 20px;
  font-size: 14px;
  background-color: transparent;
}

.unit-btn:hover{
  background-color: #e7d0b1;
  color: #002147;
}

.owl-nav {
  text-align: center;
  margin-top: 20px;
}

.owl-nav button {
  background: #e6c397 !important;
  color: #002147 !important;
  border-radius: 50% !important;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-size: 16px !important;
}

@media (max-width: 768px) {
  .unit-plans-section{
    padding: 20px 15px;
  }

  .unit-card {
    padding: 12px;
  }

  .unit-img {
    height: 200px;
  }

  .unit-heading {
    font-size: 1.5rem;
  }

  .unit-title {
    font-size: 15px;
    margin-top: 16px;
  }

  .unit-btn {
    font-size: 13px;
    padding: 7px 18px;
  }

  .owl-nav button {
    width: 36px;
    height: 36px;
    font-size: 14px !important;
  }
}

@media (max-width: 576px) {
  .unit-plans-section{
    padding: 20px 15px;
  }

  .unit-img {
    height: 180px;
  }

  .unit-heading {
    font-size: 1.5rem;
  }

  .unit-title {
    font-size: 14px;
  }

  .unit-btn {
    padding: 6px 16px;
    font-size: 12px;
  }

  .owl-nav button {
    width: 34px;
    height: 34px;
    font-size: 13px !important;
  }
}


/*--------------------Project Gallery Section-------------------*/
.project-gallery-section {
  background-color: #2c2925;
  padding: 40px 10px;
  border-top: 1px solid #947854;
}

.gallery-heading {
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.gallery-underline {
  width: 70px;
  height: 4px;
  background-color: #c5a67e;
  border-radius: 2px;
  margin-top: 8px;
  margin-bottom: 30px;
}

.custom-gallery-tabs .nav-link {
  padding: 10px 25px;
  border: 2px solid #c5a67e;
  color: #002147;
  font-weight: 600;
  border-radius: 30px;
  background-color: #fff;
  margin: 0 10px;
  transition: 0.3s;
}

.custom-gallery-tabs .nav-link.active,
.custom-gallery-tabs .nav-link:hover {
  background-color: #c5a67e;
  color: #fff;
}

.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #a59880;
  transition: transform 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
}

.tab-pane-gallery {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.tab-pane-gallery.active {
  display: block;
  opacity: 1;
}

@media (max-width: 576px) {
  .gallery-heading {
    font-size: 22px;
  }

  .custom-gallery-tabs .nav-link {
    padding: 8px 18px;
    font-size: 14px;
    margin: 5px 5px;
  }

  .gallery-img {
    height: 180px;
  }

  .gallery-underline {
    width: 50px;
    height: 3px;
    margin-bottom: 10px;
  }

  .project-gallery-section {
    padding: 30px 10px;
  }
}

@media (max-width: 576px) {
  .custom-gallery-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .custom-gallery-tabs::-webkit-scrollbar {
    display: none;
  }

  .custom-gallery-tabs .nav-link {
    padding: 8px 15px;
    font-size: 12px;
    margin: 0 6px;
  }
}

/*---------------------------Location Section--------------------*/
#location-advantage {
  background: url('images/panache-gallery3.jpg') no-repeat center center/cover;
  position: relative;
  padding: 60px 20px;
  overflow: hidden;
}

#location-advantage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 0;
}

.location-wrapper * {
  position: relative;
  z-index: 2;
}

.location-heading {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
}

.location-underline {
  width: 80px;
  height: 4px;
  background: #c5a67e;
  margin: 10px auto 40px;
  border-radius: 3px;
}

.location-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.location-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 30px;
  flex: 1 1 300px;
  max-width: 360px;
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
  transition: all 0.4s ease;
}

.location-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  border-color: #c5a67e;
}

.location-box h4 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #c5a67e;
}

.la-lux-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.la-lux-item {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
}

.la-lux-item i {
  margin-right: 12px;
  color: #c5a67e;
  font-size: 18px;
  min-width: 22px;
}

@media (max-width: 992px) {
  .location-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  #location-advantage{
    padding: 20px 10px;
  }

  .location-heading {
    font-size: 20px;
  }

  .location-underline {
    margin: 10px auto 20px;
  }

  .location-box {
    max-width: 100%;
    padding: 25px 15px;
  }

  .la-lux-item {
    font-size: 13px;
  }
}

/*-------------------------Location Section-------------------*/
.contact-section {
  background-color: #fcf7ef;
  padding: 60px 20px;
}

.contact-heading {
  font-size: 28px;
  font-weight: 700;
  color: #002147;
  text-transform: uppercase;
}

.cform-group {
  position: relative;
  margin-bottom: 0;
}

.cform-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
  background-color: #fff;
  color: #333;
  transition: all 0.3s ease;
  display: block;
}

.cform-input:focus {
  outline: none;
  border-color: #c5a67e;
  box-shadow: 0 0 5px rgba(197, 166, 126, 0.5);
}

.cform-icon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #c5a67e;
  font-size: 16px;
  pointer-events: none;
}

.cform-submit-btn {
  background-color: #c5a67e;
  color: #002147;
  font-weight: 600;
  padding: 12px 30px;
  border: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.cform-submit-btn:hover {
  background-color: #b59660;
  color: #fff;
}

.contact-number a {
  color: #002147;
  font-weight: bold;
}

.rera-section img {
  max-height: 80px;
  object-fit: contain;
  background: #fff;
  padding: 4px;
  border-radius: 6px;
}

.rera-link {
  font-size: 16px;
  font-weight: 500;
  color: #002147;
}

.rera-link:hover {
  text-decoration: none;
  color: #002147;
}

.disclaimer {
  font-size: 13px;
  border-top: 1px solid #d5cbbf;
  padding-top: 12px;
  color: #333;
  opacity: 0.85;
  line-height: 1.6;
}

.privacy-policy-link {
  color: #000;
  font-weight: 500;
}

.privacy-policy-link:hover {
  color: #000;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 30px 0px;
  }

  .contact-heading {
    font-size: 24px;
    text-align: center;
  }

  .cform-group {
    margin-bottom: 16px;
  }

  .cform-submit-btn {
    width: 100%;
    margin-top: 5px;
  }

  .contact-number {
    text-align: center;
    margin-top: 20px;
    margin-bottom: 25px;
  }

  .rera-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .rera-col {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center;
  }

  .rera-section img {
    max-width: 85%;
    height: auto;
    margin: 0 auto;
  }

  .rera-section p {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.4;
    color: #333;
  }

  .rera-link {
    font-size: 14px;
    text-align: center;
    display: block;
    margin-top: 10px;
  }

  .disclaimer {
    font-size: 12px;
    text-align: justify;
    margin-top: 25px;
  }
}


/*-----------------------------------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: #927652;
  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 (max-width: 991px) {
  .mobile-view {
    display: block;
  } 
}
  
  
 