@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');
* {
  font-family: "Google Sans", sans-serif;
  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: 5px !important;
}
    
.navbar-brand img {
  max-height: 35px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 25px; 
  }

  .navbar {
    padding: 0.2rem 0.2rem !important; 
    text-align: center;
  }

  .nav-link {
    font-size: 12px !important;
  }

}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 16px;
  color: #000;
}
  
.nav-link:hover{
  color: #b48a4a;
}

/*---------------------Popup Form Code-------------------*/
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 9999;
  overflow: auto;
  backdrop-filter: blur(6px);
}

.popup-content {
  background: linear-gradient(145deg, #f0f0f0, #ffffff);
  margin: 5% auto;
  padding: 35px 30px;
  max-width: 450px;
  position: relative;
  border: 1px solid #bd0000;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(210, 165, 98, 0.2);
  transition: all 0.4s ease;
}

.close-icon {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  transition: color 0.3s ease;
}

.popup-content h2 {
  margin-top: 0;
  margin-bottom: 25px;
  color: #966304;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
  position: relative;
}

.popup-content h2::after {
  content: "";
  width: 60px;
  height: 2px;
  background-color: #c9a25a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.popup-content .labelpara {
  display: block;
  margin-top: 10px;
  font-size: 10px;
  color: #555;
  text-align: center;
  line-height: 1.5;
}

.popup-content .form-group {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.input-group-prepend .input-group-text {
  background: linear-gradient(135deg, #fff, #e6e6e6);
  border: none;
  border-radius: 6px 0 0 6px;
  padding: 12px;
  color: #c9a25a;
  display: flex;
  align-items: center;
}

.input-group-text i {
  font-size: 1.1rem;
}

.popup-content input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 0 6px 6px 0;
  box-sizing: border-box;
  font-size: 16px;
  background: transparent;
  outline: none;
  color: #333;
}

.submit-button {
  display: block;
  width: 100%;
  padding: 10px 15px;
  font-size: 18px;
  background: #9e7424;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.submit-button:hover {
  transform: translateY(-2px);
  background: #c9a25a;
  color: #000;
}

@media (max-width: 600px) {
  .popup-content {
    margin: 20px;
    padding: 25px 20px;
  }
}

@media (max-width: 450px) {
  .popup-content h2 {
    font-size: 12px;
    font-weight: 700;
  }

  .popup-content input {
    font-size: 14px;
  }

  .submit-button {
    font-size: 14px;
    font-weight: 800;
    padding: 8px 10px;
  }
}

/*-----------------Home Page section---------------*/
.video-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 60px;
  max-width: 650px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.5));
  padding: 25px;
}

.hero-content h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 12px;
}

.sub-text {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #f8e2c8;
  letter-spacing: 0.5px;
}

.price-text {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.location-text {
  font-size: 15px;
  margin-bottom: 18px;
  color: #ddd;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-highlights span {
  background: rgba(255,255,255,0.15);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
}

@media (max-width: 768px) {
  .video-hero {
    position: relative !important;
    display: block !important;
    height: auto !important;
    overflow: hidden !important;
  }

  .hero-video {
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    max-height: 60vh !important;
    object-fit: cover !important;
    display: block !important;
  }

  .desktop-video {
    display: none !important;
  }

  .mobile-video {
    display: block !important;
  }

  .hero-content {
    position: relative !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 15px !important;
    margin: 0 !important;
    background: #0d0d0d !important;
    color: #fff !important;
    text-align: center !important;
    transform: none !important;
    left: auto !important;
    bottom: auto !important;
    box-sizing: border-box !important;
  }

  .hero-content h2 {
    font-size: 22px !important;
    margin-bottom: 10px !important;
  }

  .sub-text {
    font-size: 17px !important;
    color: #d4a866 !important;
    margin-bottom: 8px !important;
  }

  .price-text {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .location-text {
    font-size: 14px !important;
    margin-bottom: 15px !important;
  }

  .hero-highlights {
    justify-content: center !important;
  }
}

/*-----------------Overview Section---------------*/
.overview-sec{
  padding: 50px 20px;
  background:#efe3cf;
}

.overview-wrap{
  display:flex;
  align-items:center;
  gap: 40px;
}

.overview-img{
  flex:1;
  overflow:hidden;
}

.overview-img img{
  width:100%;
  height:100%;
  border: 1px solid #b48a4a;
  object-fit:cover;
}

.overview-content{
  flex:1;
}

.overview-content h1{
  font-size:32px;
  font-weight:600;
  color:#1b1b1b;
  line-height:1.4;
  margin-bottom:12px;
}

.overview-content h2{
  font-size: 20px;
  color:#251c0f;
  font-weight:600;
  margin-bottom:20px;
}

.overview-content p{
  font-size:16px;
  color:#444;
  line-height:1.8;
  margin-bottom:15px;
}

.overview-content strong{
  color:#000;
  font-weight:600;
}

@media(max-width:1400px){
  .overview-wrap{
    gap:50px;
  }

  .overview-content h1{
    font-size:30px;
  }
}

@media(max-width:1200px){
  .overview-wrap{
    gap:40px;
  }

  .overview-content h1{
    font-size:28px;
  }
}

@media(max-width:992px){
  .overview-wrap{
    flex-direction:column;
    gap: 10px;
  }

  .overview-content{
    text-align: left;
  }

  .overview-content h1{
    font-size: 26px;
  }
}

@media(max-width:768px){
  .overview-sec{
    padding: 40px 10px;
  }

  .overview-content h1{
    font-size:24px;
  }

  .overview-content h2{
    font-size:17px;
  }
}

@media(max-width:576px){
  .overview-sec{
    padding: 30px 10px;
  }

  .overview-content h1{
    font-size: 20px;
  }

  .overview-content h2{
    font-size:16px;
  }

  .overview-content p{
    font-size:14px;
  }
}

@media(max-width:480px){
  .overview-content h1{
    font-size:20px;
  }
}

@media(max-width:360px){
  .overview-content h1{
    font-size:18px;
  }

  .overview-content h2{
    font-size:15px;
  }
}

/*------------------Project Highlights----------------*/
.key-highlights {
  background: linear-gradient(135deg, #f8f6f1, #efe3cf);
  padding: 70px 20px;
  text-align: center;
}

.highlights-heading {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 35px;
  text-transform: uppercase;
  position: relative;
}

.highlights-heading:after {
  content: "";
  width: 80px;
  height: 3px;
  background: #b48a4a;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.highlights-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: auto;
}

.highlight-box {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(180,138,74,0.3);
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  width: 30%;
  color: #333;
  transition: 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.highlight-box:hover {
  transform: translateY(-6px);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

@media (max-width: 1024px) {
  .highlight-box {
    width: 45%;
  }
}

@media (max-width: 768px) {
  .key-highlights {
    padding: 30px 15px;
  }

  .highlights-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }

  .highlight-box {
    width: 48%;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .highlight-box {
    width: 100%;
    font-size: 14px;
    padding: 14px;
  }

  .highlights-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }
}

/*------------------Unit plans and Price plan section------------------------*/
.unit-section{
  background:#0f0f0f;
  padding: 40px 20px;
  text-align:center;
  color:#fff;
}

.section-heading{
  color:#c9a25a;
  font-size: 36px;
  margin: 30px 0 20px;
  text-transform: uppercase;
}

.config-section-heading{
  color:#c9a25a;
  font-size: 36px;
  margin-top: 50px;
  text-transform: uppercase;
}

.slider-wrapper{
  max-width:1100px;
  margin:auto;
}

.slider-window{
  overflow:hidden;
  width:100%;
}

.slider-track{
  display:flex;
  transition:transform 0.5s ease;
}

.slide{
  min-width:33.333%;
  padding:10px;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.slide img{
  width:100%;
  height:260px;
  object-fit:contain;
  background:#fff;
  border-radius:12px;
  filter:blur(2px);
}

.slide h5{
  margin-top: 15px;
  font-size: 20px;
  color:#fff;
  text-align:center;
}

.slider-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  margin-top: 20px;
}

.nav-btn{
  width:45px;
  height:45px;
  border-radius:50%;
  background:#c9a25a;
  border:none;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:22px;
}

.config-table{
  width:90%;
  margin:30px auto;
  border-collapse:collapse;
  color:#fff;
}

.config-table th,
.config-table td{
  border:1px solid #333;
  padding:12px;
}

.price-btn{
  background:linear-gradient(90deg,#d0b583,#dcc291);
  padding:6px 10px;
  color:#000;
  text-decoration:none;
  border-radius:4px;
  font-weight:600;
  display:inline-block;
}

.price-btn:hover{
  background:#dcc291;
  text-decoration: none;
  color:#000;
}

@media (max-width:767px){
  .unit-section {
    padding: 20px 10px;
  }

  .section-heading {
    font-size: 25px;
    margin: 10px 0 10px;
  }

  .config-section-heading {
    font-size: 25px;
  }

  .slide h5 {
    font-size: 18px;
  }

  .slide{
    min-width:100%;
  }

  .slide img{
    height:220px;
  }

  .nav-btn{
    width:36px;
    height:36px;
    font-size:18px;
  }

  .slider-controls {
    margin-top: 0 !important; 
  }

}

@media (min-width:768px) and (max-width:1023px){
  .slide{
    min-width:50%;
  }

  .slide img{
    height:240px;
  }

}

@media (min-width:1024px) and (max-width:1399px){
  .slide{
    min-width:33.333%;
  }

  .slide img{
    height:260px;
  }

}

@media (min-width:1400px){
  .slide img{
    height:300px;
  }
}

/*----------------------Amenities Section--------------------*/
.amenities-section {
  text-align: center;
  padding: 60px 30px;
  background: linear-gradient(135deg, #f8f6f1, #efe3cf);
}

.amenities-heading {
  font-size: 36px;
  font-weight: 600;
  color: #222;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  justify-content: center;
}

.amenity {
  background: #fff;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #beb29b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.amenity img {
  width: 70px;
  height: 70px;
  margin-bottom: 10px;
}

.amenity h3 {
  font-size: 18px;
  color: #966304;
}

.amenity p {
  font-size: 14px;
  color: #666;
}

@media (max-width: 1024px) {
  .amenities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .amenities-section {
    padding: 20px 20px;
  }
}

@media (max-width: 480px) {
  .amenities-section {
    padding: 20px 20px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenities-heading {
    font-size: 28px;
  }

  .amenity h3 {
    font-size: 14px;
  }

  .amenity p {
    font-size: 10px;
  }
}

/*--------------------Project Gallery-------------------*/
.project-gallery {
  text-align: center;
  padding: 60px 20px;
  background-color: #121212;
}

.gallery-heading {
  font-size: 36px;
  font-weight: 600;
  color: #f4e8d3;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 220px; 
  object-fit: cover; 
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.15);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 12px;
}

.overlay span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.25);
  padding: 12px 22px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.overlay span:hover {
  background: rgba(255, 255, 255, 0.4);
}

.gallery-item:hover .overlay {
  opacity: 1;
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }

  .project-gallery {
    padding: 30px 20px;
  }

  .gallery-heading {
    font-size: 1.8rem;
  }

  .gallery-item img {
    width: 100%;
    height: 150px; 
    object-fit: cover; 
  }
}

@media (max-width: 576px) {
  .project-gallery {
    padding: 30px 20px;
  }

  .gallery-heading {
    font-size: 1.8rem;
  }

  .gallery-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-item img {
    width: 100%;
    height: 150px; 
    object-fit: cover; 
  }
  
}


/*--------------------Location section---------------*/
.location-section{
  background: linear-gradient(135deg, #f8f6f1, #efe3cf);
  padding:60px 20px;
}

.location-heading{
  text-align:center;
  font-size:36px;
  font-weight:600;
  color:#222;
  text-transform:uppercase;
  margin-bottom:40px;
}

.location-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

.location-map{
  flex:1;
}

.location-map iframe{
  width:100%;
  height:450px;
  border:1px solid #c9a25a;
  border-radius:15px;
}

.location-list{
  flex:1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
}

.loc-item{
  background:rgba(119,119,119,0.07);
  padding:14px 16px;
  border-radius:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

.loc-item span{
  color:#000;
}

.loc-item b{
  color:#9e7424;
  font-weight:600;
}

@media (max-width:1023px){

  .location-container{
    flex-direction:column;
    align-items:center;
    gap: 10px;
  }

  .location-map,
  .location-list{
    width:100%;
    max-width:700px;
  }

  .location-map iframe{
    height:320px;
  }

}

@media (max-width:767px){

  .location-section{
    padding:30px 15px;
  }

  .location-heading{
    font-size:24px;
    margin-bottom:20px;
  }

  .location-map,
  .location-list{
    max-width:100%;
  }

  .location-map iframe{
    height:260px;
    border-radius:12px;
  }

  .location-list{
    display:block;
    background:#ffffff;
    border-radius:16px;
    padding:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    border:1px solid rgba(201,162,90,0.3);
  }

  .loc-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 0;
    border-bottom:1px solid rgba(0,0,0,0.08);
    background:none;
  }

  .loc-item:last-child{
    border-bottom:none;
  }

  .loc-item span{
    font-size:13px;
    color:#333;
  }

  .loc-item b{
    font-size:14px;
    color:#9e7424;
  }

}

/*----------------------Contact Us Section---------------------------*/
.contact-section{
  background:#f8f6f1;
  padding:70px 20px;
  display:flex;
  justify-content:center;
}

.contact-box{
  max-width:1100px;
  width:100%;
  background:#ffffff;
  padding:50px 40px;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.contact-heading{
  text-align:center;
  color:#836230;
  font-size:30px;
  margin-bottom:35px;
}

.contact-form{
  width:100%;
}

.form-row{
  display:flex;
  gap:20px;
  align-items:center;
}

.form-row input{
  flex:1;
  width:100%;
  height:55px;
  background:#f8f6f1;
  border:1px solid #e0d8c8;
  border-radius:10px;
  padding:0 18px;
  box-sizing:border-box;
  color:#333;
  font-size:14px;
  outline:none;
}

.form-row button{
  height:55px;
  padding:0 30px;
  background-color:#dcc291;
  border:none;
  border-radius:10px;
  color:#000;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
}

@media (max-width:767px){
  .contact-section {
    padding: 40px 10px;
  }

  .contact-heading {
    font-size: 25px;
    margin-bottom: 15px;
  }

  .form-row{
    display:block;
  }

  .form-row input{
    display:block;
    width:100%;
    margin-bottom:15px;
  }

  .form-row button{
    width:100%;
    display:block;
  }

  .contact-box{
    padding:25px 20px;
  }

}

@media (min-width:768px) and (max-width:1023px){

  .form-row{
    flex-wrap:wrap;
  }

  .form-row input{
    width:48%;
  }

  .form-row button{
    width:100%;
    margin-top:10px;
  }
}

/*-----------------------Footer section----------------------------*/
.footer-section {
  background-color: #1a1a1a;
  color: #fff;
  padding: 40px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-content {
  padding: 20px;
  border-radius: 8px;
}

.address-phone {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
  padding-bottom: 10px;
}

.footer-phone a{
  color: #fff;
}

.footer-phone a:hover{
  color: #fff;
  text-decoration: none;
}

.qr-rera {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px 0;
}

.qr-container, .rera-container {
  flex: 1;
  text-align: center;
}

.qr-code {
  width: 80px;
  height: 80px;
  border: 2px solid #e6b863;
  border-radius: 10px;
  background: #fff;
}

.maharera-number {
  font-size: 18px;
}

.maharera-link {
  color: #e6b863;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin: 15px 0;
}

.maharera-link:hover {
  text-decoration: underline;
  color: #fff;
}

.disclaimer {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 20px;
  line-height: 1.5;
}

.privacy-policy {
  color: #e6b863;
  text-decoration: none;
  font-size: 14px;
}

.privacy-policy:hover {
  text-decoration: underline;
  color: #fff;
}

@media (max-width: 768px) {
  .address-phone, .qr-rera {
    flex-direction: column;
    text-align: center;
  }

  .footer-section {
    padding: 20px 10px;
  }

  .maharera-link {
    font-size: 14px;
  }

  .address-phone {
    font-size: 16px;
  }

  .qr-rera {
    margin: 10px 0;
  }

  .qr-container, .rera-container {
    margin-bottom: 10px;
  }

  .disclaimer {
    font-size: 12px;
    margin-bottom: 30px;
  }

  .maharera-number {
    font-size: 14px;
  }

}



/*----------------------whatsapp, phone Section-----------------------*/
#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: #815a12;
  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;
  } 
}
