@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
* {
  font-family: "Figtree", 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;
  overflow-x: hidden;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  z-index: 100;
  padding: 2px !important;
}
    
.navbar-brand img {
  max-height: 55px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 40px; 
  }

  .navbar {
    padding: 0.2rem 0.2rem !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: #8B4513;
}

/*---------------------Popup Form Code-------------------*/
.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;
  font-family: "Dancing Script", cursive;
  color: #8B4513;
  font-size: 28px;
  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: #8B4513;
  border: 1px solid #8B4513;
  border-radius: 4px;
  padding: 8px;
  color: #fff;
}
  
.input-group-text i {
  font-size: 1.2rem; 
}
  
.submit-button {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 10px 16px;
  background-color: #8B4513;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
  
.submit-button:hover {
  background-color: #a85a1a;
  color: #fff;
}
  
@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
  }
}
  
@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 1.2rem;
  }
}

/*-----------------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---------------*/
.overview-dark-section {
  background: #121212;
  color: #e0e0e0;
  padding: 60px 0;
}

.overview-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.overview-text-box {
  flex: 1;
}

.overview-title {
  font-size: 32px;
  font-weight: 700;
  color: #e6e0d5; 
  margin-bottom: 20px;
}

.overview-desc {
  font-size: 16px;
  color: #ccc;
  line-height: 1.8;
}

.overview-highlight-box {
  flex: 1;
  background: #1e1e1e;
  padding: 30px 25px;
  border-left: 4px solid #8B4513;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.highlight-heading {
  font-size: 20px;
  color: #d4c3b3;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid #444;
  padding-bottom: 8px;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 16px;
  font-size: 15px;
  color: #b8b8b8;
}

.bullet-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 10px;
  height: 10px;
  background-color: #8B4513;
  border-radius: 50%;
}

@media (min-width: 768px){
  .overview-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .overview-dark-section {
    padding: 20px 0;
  }

  .overview-title {
    font-size: 1.5rem;
  }

  .overview-desc {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*-------------------Amenities Section----------------------*/
.amenities-section {
  padding: 40px 20px;
  background: #f9f9f9;
  text-align: center;
  border-top: 1px solid #8B4513;
}

.amenities-title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 2px;
}

.underline {
  width: 60px;
  height: 4px;
  background-color: #8B4513;
  margin: 10px auto 30px;
}

.amenities-slider {
  display: flex;
  transition: transform 0.6s ease;
  width: 100%;
}

.slide {
  flex: 0 0 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.amenity-box {
  width: 30%;
  margin: 15px;
  text-align: center;
}

.amenity-box img {
  width: 60px;
  margin-bottom: 10px;
}

.amenity-box p {
  font-size: 14px;
  margin: 0;
}

.arrow-controls {
  margin-top: 30px;
}

.arrow-btn {
  width: 40px;
  height: 40px;
  border: 2px solid #8B4513;
  background: #fff;
  border-radius: 50%;
  color: #8B4513;
  font-size: 18px;
  margin: 0 10px;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #8B4513;
  color: #fff;
}

@media(max-width: 768px){
  .amenities-title {
    font-size: 1.5rem;
  }

  .amenities-section {
    padding: 20px 10px;
  }
}

@media (max-width: 575px) {
  .amenities-title {
    font-size: 1.5rem;
  }

  .amenities-section {
    padding: 20px 10px;
  }

  .amenity-box {
    width: 30%;
    margin: 5px;
    padding: 10px 0;
  }

  .amenity-box img {
    width: 35px;
    margin-bottom: 5px;
  }

  .amenity-box p {
    font-size: 11px;
  }

  .arrow-controls {
    margin-top: 15px;
  }

  .arrow-btn {
    width: 32px;
    height: 32px;
    font-size: 15px;
  }
}

@media (max-width: 334px) {
  .amenities-title {
    font-size: 1.5rem;
  }

  .amenities-section {
    padding: 20px 10px;
  }

  .amenity-box {
    width: 48%;
    margin: 5px 1%;
    padding: 8px 0;
  }

  .amenity-box img {
    width: 30px;
    margin-bottom: 4px;
  }

  .amenity-box p {
    font-size: 10px;
  }

  .arrow-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/*----------------------Configuration Section-----------------*/
.config-section {
  background-color: #121212;
  color: #e0e0e0;
  padding: 60px 20px;
  text-align: center;
  border-top: 1px solid #8B4513;
}

.container-config {
  max-width: 1200px;
  margin: 0 auto;
}

.config-title {
  font-size: 32px;
  font-weight: bold;
  color: #e0e0e0;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.underline-config {
  width: 60px;
  height: 4px;
  background-color: #8B4513;
  margin: 0 auto 40px;
}

.config-box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.config-item {
  background-color: #1e1e1e;
  padding: 25px 20px;
  border: 1px solid #8B4513;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease;
}

.config-item:hover {
  transform: translateY(-4px);
}

.config-name {
  flex: 1 1 20%;
  font-size: 18px;
  font-weight: 600;
  color: #e0e0e0;
}

.config-unit {
  flex: 1 1 20%;
  font-size: 16px;
  color: #ccc;
}

.config-area {
  flex: 1 1 30%;
  font-size: 16px;
  color: #ccc;
}

.config-btn {
  flex: 1 1 20%;
  padding: 10px 20px;
  background-color: #8B4513;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.config-btn:hover {
  background-color: #a85a1a;
}

@media (max-width: 768px) {
  .config-item {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
  }

  .config-btn {
    align-self: flex-start;
  }
}

/*--------------------------Unit PLans Sectio-----------------------*/
.plan-unit-section {
  position: relative;
  padding: 60px 50px;
  border-top: 1px solid #8B4513;
  background: url('images/back.jpg') no-repeat center center/cover;
  z-index: 1;
}

.plan-unit-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 18, 18, 0.7);
  z-index: 1;
}

.plan-unit-section .planss {
  position: relative;
  z-index: 2;
}

.unitpla-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #fff;
  position: relative;
}

.unitpla-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #121212, #8B4513);
  margin: 12px auto 0;
  border-radius: 2px;
}

.unit-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  position: relative;
  background-color: #fff;
  border: 1px solid #8B4513;
  padding: 20px;
  transition: transform 0.3s ease;
}

.unit-card:hover {
  transform: translateY(-8px);
}

.unit-image {
  width: 100%;
  height: 250px;
  object-fit: contain;
  filter: blur(1px);
}

.unit-label {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(119, 70, 25, 0.9);
  color: #fff;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  z-index: 2;
}

.btn-view-plan {
  display: block;
  margin: 10px auto 0;
  background-color: #8B4513;
  color: #fff;
  padding: 6px 16px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-view-plan:hover {
  background-color: #512b10;
  color: #fff;
}

@media(max-width: 768px){
  .plan-unit-section {
    padding: 20px 30px;
  }

  .unitpla-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media(max-width: 600px){
  .plan-unit-section {
    padding: 20px 30px;
  }

  .unitpla-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/*-----------------Gallery Section------------------*/
.gallery-section {
  background: #f9f9f9;
  padding: 60px 20px;
  border-top: 1px solid #8B4513;
}

.gallery-title {
  margin-bottom: 30px;
  font-size: 32px;
  font-weight: bold;
}

.gallery-carousel .carousel-inner {
  overflow: visible;
}

.gallery-carousel .carousel-item .image-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.image-wrapper {
  flex: 0 0 30%;
}

.gallery-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid #8B4513;
  transition: transform 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.7);
}

.custom-prev, .custom-next {
  background-color: #8B4513;
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-prev {
  left: 0%;
}

.custom-next {
  right: 0%;
}

.carousel-control-icon {
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
}

@media (max-width: 992px) {
  .image-wrapper {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-section {
    padding: 20px 2px;
  }

  .gallery-carousel .carousel-item .image-row {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .image-wrapper {
    flex: 0 0 100%;
    max-width: 90%;
  }

  .gallery-img {
    width: 100%;
    height: 200px;
  }

  .custom-prev, .custom-next {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .gallery-title {
    font-size: 1.5rem;
  }

  .gallery-img {
    width: 100%;
    height: 200px;
  }
}

/*--------------------Clusters Section--------------------*/
.clusters-section {
  background: #2f2e2e;
  padding: 40px 30px;
  border-top: 1px solid #8B4513;
}

.clusters-head{
  font-size: 32px;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}

.cluster-row {
  margin-bottom: 20px;
}

.cluster-image {
  height: 400px;
  border: 2px solid #8B4513;
  background-size: cover;
  background-position: center;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  transition: transform 0.4s ease;
}

.cluster-image.right {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.cluster-image:hover {
  transform: scale(1.03);
}

.cluster-content {
  background: #ffffff;
  padding: 30px;
  border-left: 4px solid #8B4513;
  border-radius: 10px;
}

.cluster-content h3 {
  font-size: 32px;
  color: #8B4513;
  margin-bottom: 20px;
}

.cluster-content p {
  margin-bottom: 10px;
  color: #333;
  font-size: 16px;
}

.cluster-btn {
  background: #8B4513;
  color: #fff;
  padding: 8px 20px;
  font-size: 16px;
  border-radius: 4px;
  transition: background 0.3s;
  font-weight: 500;
  margin-top: 30px;
}

.cluster-btn:hover {
  background: #3e1e08;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .clusters-section {
    padding: 20px 10px;
  }

  .cluster-row {
    flex-direction: column !important;
    margin-bottom: 20px;
  }

  .cluster-image {
    height: 220px;
    width: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%) !important;
    border: 2px solid #8B4513;
    border-radius: 12px 12px 0 0;
    background-size: cover;
    background-position: center;
  }

  .cluster-image.right {
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }

  .cluster-content {
    width: 100%;
    padding: 20px;
    background: #ffffff;
    border-left: none;
    border-top: 4px solid #8B4513;
    border-radius: 0 0 12px 12px;
  }

  .cluster-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #8B4513;
  }

  .cluster-content p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
  }

  .cluster-btn {
    font-size: 14px;
    padding: 8px 16px;
    margin-top: 14px;
    display: inline-block;
    background-color: #8B4513;
    color: #fff;
    border-radius: 4px;
  }

  .clusters-head {
    font-size: 24px;
    margin-bottom: 20px;
    color: #fff;
  }

}

/*-----------------------Location Advantage------------------*/
.location-advantage-section {
  background-color: #121212;
  color: #fff;
  border-top: 1px solid #8B4513;
  padding: 40px 20px;
}

.main-location-heading {
  font-size: 34px;
  font-weight: 700;
  color: #d69e65;
  position: relative;
}

.main-location-heading::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #d69e65;
  margin: 10px auto 0;
  margin-bottom: 30px;
}

.location-map-box {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.location-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}

.location-list li {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.location-list li i {
  color: #d69e65;
  margin-right: 10px;
  font-size: 16px;
}

@media(max-width: 768px){
  .location-advantage-section {
    padding: 20px 0px;
  }

  .main-location-heading {
    font-size: 1.6rem;
  }

  .location-list li {
    font-size: 15px;
  }

}

/*--------------------Contact Us Section-----------------*/
.contact-address-section {
  background: #f5f5f5;
  border-top: 1px solid #8B4513;
  padding: 60px 20px;
}

.custom-container {
  max-width: 1140px;
  margin: auto;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.contact-form-box, .project-details-box {
  flex: 1 1 48%;
  background: #121212;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.form-header h2 {
  font-size: 28px;
  color: #c1692a;
  margin-bottom: 10px;
}

.form-underline {
  width: 60px;
  height: 3px;
  background-color: #c1692a;
}

.input-wrap {
  margin-bottom: 20px;
}

.input-group-custom {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
}

.input-group-prepend-custom {
  padding: 12px;
  background: #c1692a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.input-group-prepend-custom span i {
  font-size: 16px;
}

.form-control-custom {
  border: none;
  background: transparent;
  padding: 12px 16px;
  flex: 1;
  font-size: 14px;
  color: #000;
}

.form-control-custom:focus {
  outline: none;
  background: #eaeaea;
}

.submit-btn-custom {
  width: 100%;
  background: #c1692a;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.submit-btn-custom:hover {
  background: #e0905a;
}

.project-title {
  font-size: 26px;
  font-weight: 700;
  color: #c1692a;
  margin-bottom: 20px;
}

.project-address {
  font-size: 18px;
  line-height: 1.6;
  color: #f9f9f9;
  margin-bottom: 30px;
}

.project-phone a {
  color: #c1692a;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}

.project-phone a:hover {
  text-decoration: underline;
}

@media(max-width: 768px) {
  .contact-grid {
    flex-direction: column;
    gap: 10px;
  }

  .contact-form-box, .project-details-box {
    padding: 20px;
  }

  .contact-address-section {
    padding: 20px 0px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .project-address {
    font-size: 16px;
    margin-bottom: 20px;
  }

}

/*------------------About the Develpoer------------------*/
.about-developer-section {
  background-color: #f0f0f0;
  color: #000;
  padding: 40px 20px;
  border-top: 1px solid #8B4513;
}

.about-developer-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.developer-logo {
  width: 140px;
  height: auto;
}

.developer-heading {
  font-size: 32px;
  font-weight: 700;
  color: #8B4513;
  text-transform: uppercase;
}

.developer-underline {
  width: 70px;
  height: 4px;
  background-color: #d69e65;
  margin: 10px auto;
}

.developer-description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
}

@media (max-width: 768px) {
  .about-developer-section {
    padding: 20px 15px;
    text-align: center;
  }

  .developer-heading {
    font-size: 26px;
  }

  .developer-description {
    font-size: 14px;
    max-width: 100%;
  }

  .developer-logo {
    width: 100px;
    margin-bottom: 15px;
  }

  .developer-underline {
    width: 50px;
    height: 3px;
  }
}

@media (max-width: 480px) {
  .about-developer-section {
    padding: 20px 10px;
  }

  .developer-heading {
    font-size: 22px;
  }

  .developer-description {
    font-size: 13px;
  }

  .developer-underline {
    width: 40px;
  }
}


/*-----------------QR code section----------------*/
.rera-sec {
  padding: 30px 0px;
  background: #121212;
  color: #fff;
  border-top: 1px solid #8B4513;
}

.qr-box {
  margin: 0 auto;
  width: 50%;
  text-align: center;
}

.qr-box img {
  width: 90px !important;
  height: 90px !important;
  object-fit: cover;
  margin: auto;
  margin-bottom: 20px;
}

.footer-link {
  color: #b3591a;
  font-size: 1.2rem;
}

.footer-text {
  font-size: 16px;
}

.privacy-policy-link {
  color: #8B4513;
  text-decoration: underline;
}

.privacy-policy-link:hover {
  color: #fff;
}

.footer-link:hover {
  color: #ccc;
}

.qr-owl-nav .qr-owl-prev,
.qr-owl-nav .qr-owl-next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: #8B4513;
  color: #fff;
  font-size: 14px !important;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  z-index: 2;
}

.qr-owl-nav .qr-owl-prev:hover,
.qr-owl-nav .qr-owl-next:hover {
  background-color: #a85a1a;
}

.qr-owl-nav .qr-owl-prev {
  left: -30px;
}

.qr-owl-nav .qr-owl-next {
  right: -30px;
}

@media (max-width: 768px) {
  .qr-box {
    width: 80%;
  }

}

@media (max-width: 768px) {
  .qr-owl-nav .qr-owl-prev,
  .qr-owl-nav .qr-owl-next {
    font-size: 14px;
    padding: 6px 10px;
    top: 90%;
    transform: translateY(-50%);
    background-color: #8B4513;
    border-radius: 50%;
    box-shadow: none;
  }

  .qr-owl-nav .qr-owl-prev {
    left: 35%;
  }

  .qr-owl-nav .qr-owl-next {
    right: 35%;
  }

  .footer-text {
    margin-bottom: 40px;
  }

}


/*-----------------------------------whatsapp, phone 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: #8B4513;
  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;
  } 
}
  
  
 