@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
* {
  font-family: "League Spartan", 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: 2px !important;
}
    
.navbar-brand img {
  max-height: 45px; 
}
    
@media(max-width: 1200px){
  .navbar-brand img {
    max-height: 35px; 
  }

  .navbar {
    padding: 0.4rem 0.4rem !important; 
    text-align: center;
  }
}
  
.navbar-toggler{
  color: #000 !important;
  font-size: 1.3rem;
}
      
.navbar-nav {
  margin-left: auto;
}
    
.nav-link{
  font-size: 18px;
  color: #000;
}
  
.nav-link:hover{
  color: #6b4e2e;
}

/*---------------------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: #333;
  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: 2px;
  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 {
  border-radius: 6px 0 0 6px;
  padding: 8px 12px;
  color: #013b2f;
  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: #013b2f;
}

.submit-button {
  font-size: 14px;
  display: block;
  width: 100%;
  padding: 12px 18px;
  background: #e9caa1;
  color: #013b2f;
  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: #01211b;
  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-----------------------*/
.carousel-item {
  width: 100%;
  height: 700px; 
}
  
.carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
  
.carousel-container {
  position: relative;
}
  
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  color: #fff;
  margin: 10px;
}
  
.carousel-indicators {
  bottom: 10px;
}
  
.banner-offers {
  position: absolute;
  top: 50px;
  right: 25px;
  left: auto;
  width: 25vw; 
  background-color: rgba(0, 0, 0, 0.65);
  color: #fff;
  padding: 20px;
  border-bottom-left-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 10; 
}
  
.banner-offers h4 {
  font-size: 1.5vw;
  font-weight: 400;
  margin-bottom: 10px;
  text-align: center;
}
  
.banner-offers ul {
  list-style-type: none;
  padding: 0;
}
  
.banner-offers ul li {
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1.75;
  border: 2px dashed #fff;
  border-radius: 15px;
  color: #fff;
  margin-bottom: 8px;
  padding: 10px;
}
  
.pro-price {
  font-size: 22px !important;
  color: #fff;
  text-shadow: 0 1px 2px #000;
  margin-top: 10px;
  display: block;
  text-align: center;
}

.pro-price b{
  color: #e6cf7e;
  font-size: 25px !important;
}
  
.pro-tagg-line {
  font-size: 18px;
  text-transform: capitalize;
  line-height: 1.4;
  text-shadow: 0 1px 2px #000;
  color: #eed2ad;
  letter-spacing: 0.8px;
  display: block;
  text-align: center;
}
  
.enquire-btn {
  display: inline-block;
  font-weight: 400;
  color: #000;
  background-color: #e0c198;
  border: none;
  padding: .375rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: .25rem;
  margin: 0 auto;
  display: block;
}
  
.enquire-btn:hover {
  background-color: #332700;
  color: #fff;
}
  
@keyframes zoomInOut {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
  
.animated {
  animation-duration: 0.7s; 
  animation-iteration-count: infinite; 
  animation-direction: alternate; 
  animation-timing-function: ease-in-out; 
  animation-fill-mode: both; 
}
  
.zoomInOut {
  animation-name: zoomInOut;
}
  
.infinite {
  animation-iteration-count: infinite;
}
  
@media (max-width: 991px) {
  .carousel-item {
    width: 100%;
    height: 320px; 
    object-fit: cover;
  }
    
  .carousel-container {
    flex-direction: column;
  }
  
  .banner-offers {
    position: static;
    width: auto;
    padding: 15px;
    border-radius: 0;
    box-shadow: none;
    background-color: #433728;
  }
  
  .banner-offers h4 {
    font-size: 18px;
    text-align: center;
  }
  
  .banner-offers ul li {
    font-size: 16px;
  }
  
  .pro-tag-line{
    font-size: 16px;
    text-align: center;
  }
  
  .pro-price {
    font-size: 22px;
  }

}


/*------------------------Overview Section-----------------------*/
.oberoi-overview-section {
  padding: 40px 20px;
  background-color: #f8f6f2;
  border-top: 1px solid #947854;
}

.oberoi-overview-section .project-title {
  color: #002147;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 24px;
  border-left: 4px solid #c5a67e;
  padding-left: 15px;
  margin-bottom: 15px;
}

.oberoi-overview-section .project-overview {
  color: #444;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.oberoi-overview-section .text-gold {
  color: #c5a67e;
  margin-right: 8px;
}

.oberoi-overview-section .project-highlights li {
  font-size: 18px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
}

.oberoi-overview-section .oberoi-img {
  border: 4px solid #c5a67e;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 991px) {
  .oberoi-overview-section {
    padding: 35px 25px;
  }

  .oberoi-overview-section .overview-row {
    flex-direction: column;
    align-items: center;
  }

  .oberoi-overview-section .col-md-6 {
    max-width: 95%;
    margin: 0 auto;
  }

  .oberoi-overview-section .project-title {
    font-size: 22px;
    border-left: 3px solid #c5a67e;
    padding-left: 10px;
    margin-bottom: 12px;
    text-align: left;
  }

  .oberoi-overview-section .project-overview {
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
  }

  .oberoi-overview-section .project-highlights {
    text-align: left;
    padding-left: 0;
  }

  .oberoi-overview-section .project-highlights li {
    font-size: 0.9rem;
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .oberoi-overview-section .overview-img {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .oberoi-overview-section {
    padding: 30px 20px;
  }

  .oberoi-overview-section .project-title {
    font-size: 20px;
  }

  .oberoi-overview-section .project-overview {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .oberoi-overview-section .project-highlights li {
    font-size: 0.88rem;
  }
}

@media (max-width: 575px) {
  .oberoi-overview-section {
    padding: 15px 5px;
  }

  .oberoi-overview-section .project-title {
    font-size: 22px;
  }

  .oberoi-overview-section .project-overview {
    font-size: 15px;
    line-height: 1.5;
  }

  .oberoi-overview-section .project-highlights li {
    font-size: 15px;
  }
}

@media (max-width: 479px) {
  .oberoi-overview-section {
    padding: 10px 2px;
  }

  .oberoi-overview-section .project-title {
    font-size: 20px;
  }

  .oberoi-overview-section .project-overview {
    font-size: 15px;
    line-height: 1.45;
  }

  .oberoi-overview-section .project-highlights li {
    font-size: 15px;
  }

  .oberoi-overview-section .overview-img {
    margin-bottom: 15px;
  }
}

/*-------------------------Amenities Section--------------------*/
.amenities-section {
  padding: 30px 20px;
  background: #f8f6f2;
}

.amenities-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #002147;
  margin-bottom: 30px;
  position: relative;
}

.amenities-title:after {
  content: "";
  width: 90px;
  height: 3px;
  background: #947854;
  display: block;
  margin: 10px auto 0;
}

.amenities-block {
  max-width: 1200px;
  margin: auto;
}

.amenity-group {
  margin-bottom: 30px;
}

.amenity-group h3 {
  font-size: 25px;
  color: #947854;
  margin-bottom: 25px;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px 30px;
}

.amenity-list span {
  font-size: 18px;
  color: #333;
  position: relative;
  padding-left: 20px;
}

.amenity-list span:before {
  content: "—";
  position: absolute;
  left: 0;
  color: #c5a67e;
}

@media (max-width: 768px) {
  .amenities-section {
    padding: 20px 15px;
  }

  .amenities-title {
    font-size: 20px;
  }

  .amenity-group h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .amenity-list span {
    font-size: 16px;
    padding-left: 20px;
  }

  .amenity-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .amenity-group {
    margin-bottom: 20px;
  }

}

@media (max-width: 480px) {
  .amenity-list {
    grid-template-columns: 1fr;
  }
}

/*--------------------Configurations Section----------------*/
.config-arrow-section {
    padding: 40px 20px;
    background: #f6f4ef;
}

.config-heading {
  font-size: 32px;
  color: #002147;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}

.config-heading:after {
  content: "";
  width: 90px;
  height: 3px;
  background: #947854;
  display: block;
  margin: 10px auto 0;
}

.config-list {
  max-width: 1000px;
  margin: auto;
}

.config-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  position: relative;
}

.config-name {
  font-size: 22px;
  color: #002147;
  min-width: 200px;
}

.config-connector {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.connector-dot {
  width: 10px;
  height: 10px;
  background: #947854;
  border-radius: 50%;
  flex-shrink: 0;
}

.connector-line {
  flex: 1;
  height: 2px;
  background: #c5a67e;
  position: relative;
  margin-left: 8px;
}

.connector-label {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #f6f4ef;
  padding: 0 6px;
  font-size: 16px;
  color: #947854;
}

.connector-arrow {
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: #947854;
}

.config-area {
  min-width: 160px;
  font-size: 20px;
  color: #002147;
  font-weight: 500;
  text-align: right;
}

.config-item.highlight .config-name,
.config-item.highlight .config-area {
  font-weight: 600;
}

@media (max-width: 767px) {
  .config-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .config-arrow-section {
    padding: 30px 10px;
  }

  .config-list {
    padding: 0 10px;
  }

  .config-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 15px;
    margin-bottom: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  }

  .config-name {
    font-size: 20px;
    min-width: auto;
  }

  .config-connector {
    display: none;
  }

  .connector-line {
    height: 1px;
  }

  .connector-label {
    font-size: 14px;
    top: -18px;
  }

  .connector-arrow {
    right: 0;
    font-size: 20px;
  }

  .config-area {
    width: 100%;
    text-align: left;
    font-size: 18px;
    padding-top: 6px;
    border-top: 1px dashed #c5a67e;
  }

}

@media (min-width: 768px) and (max-width: 1024px) {
  .config-heading {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .config-arrow-section {
    padding: 30px 10px;
  }

  .config-item {
    gap: 16px;
    padding: 22px 10px;
  }

  .config-name {
    font-size: 21px;
    min-width: 180px;
  }

  .config-area {
    font-size: 19px;
    min-width: 140px;
  }

  .connector-label {
    font-size: 15px;
  }

}

@media (max-width: 767px) {
  .config-item {
    border-left: 4px solid #947854;
  }
}

/*----------------------Unit Plans Section--------------------*/
.unit-plans-sec {
  padding: 40px 20px;
  background: #f6f4ef;
}

.unit-title {
  text-align: center;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
  color: #002147;
}

.unit-line {
  display: block;
  width: 80px;
  height: 3px;
  background: #947854;
  margin: 10px auto 40px;
}

.unit-plans-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.unit-plan {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd;
}

.unit-plan img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
  display: block;
  transition: transform 0.6s ease;
}

.unit-plan:hover img {
  transform: scale(1.08);
}

.unit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.15));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.unit-overlay h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 14px;
}

.unit-overlay .plan-btn {
  align-self: flex-start;
  padding: 6px 20px;
  background: #947854;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
}

@media (max-width: 768px) {
  .unit-plans-sec {
    padding: 30px 10px;
  }

  .unit-title {
    font-size: 22px;
  }

  .unit-line {
    margin: 10px auto 20px;
  }

  .unit-plans-grid {
    grid-template-columns: 1fr;
  }
}

/*-------------------Project Gallery Section---------------------*/
.project-gallery {
  padding: 50px 40px;
  background: #f6f4ef;
}

.pg-header {
  text-align: center;
  margin-bottom: 30px;
}

.pg-header h2 {
  color: #002147;
  font-size: 32px;
  text-transform: uppercase;
  font-weight: 700;
}

.pg-line {
  width: 70px;
  height: 3px;
  background: #c9a24d;
  display: inline-block;
}

.pg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 15px;
}

.pg-item {
  position: relative;
  overflow: hidden;
}

.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pg-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pg-item:hover img {
  transform: scale(1.08);
}

.pg-item:hover::after {
  opacity: 1;
}

.pg-item.big {
  grid-column: span 2;
  grid-row: span 2;
}

.pg-item.tall {
  grid-row: span 2;
}

.pg-item.wide {
  grid-column: span 2;
}

@media(max-width: 768px){
  .pg-header {
    margin-bottom: 10px;
  }

  .pg-header h2 {
    font-size: 25px;
  }

}

@media (max-width: 991px) {
  .pg-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }
}

@media (max-width: 576px) {
  .project-gallery {
    padding: 20px 10px;
  }

  .pg-grid {
    grid-template-columns: 1fr;
  }

  .pg-item.big,
  .pg-item.tall,
  .pg-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }
}


/*----------------------Location Section------------------------*/
.connectivity-section {
  padding: 40px 20px;
  background: #f6f4ef;
}

.connectivity-heading {
  font-size: 32px;
  color: #002147;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
}

.connectivity-underline {
  width: 90px;
  height: 3px;
  background: #caa25c;
  margin: 12px auto 40px;
}

.connectivity-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

.connectivity-grid span {
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 17px;
  letter-spacing: 0.3px;
  color: #000;
  border: 1px solid #917855;
}

.connectivity-map {
  margin-top: 35px;
  width: 100%;
}

.connectivity-map iframe {
  width: 100%;
  height: 420px;
  border: 1px solid #917855;
}

@media (max-width: 1199px) {
  .connectivity-heading {
    font-size: 28px;
  }

  .connectivity-grid span {
    font-size: 16px;
    padding: 12px 20px;
  }
}

@media (max-width: 991px) {
  .connectivity-section {
    padding: 30px 10px;
  }

  .connectivity-heading {
    font-size: 26px;
  }

  .connectivity-grid {
    gap: 12px;
  }

  .connectivity-grid span {
    font-size: 15px;
    padding: 12px 18px;
  }

  .connectivity-map iframe {
    height: 360px;
  }
}

@media (max-width: 767px) {
  .connectivity-section {
    padding: 20px 10px;
  }

  .connectivity-heading {
    font-size: 24px;
  }

  .connectivity-underline {
    margin-bottom: 30px;
  }

  .connectivity-grid span {
    font-size: 14px;
    padding: 10px 16px;
    border-radius: 30px;
  }

  .connectivity-map iframe {
    height: 300px;
  }
}

@media (max-width: 575px) {
  .connectivity-section {
    padding: 20px 10px;
  }

  .connectivity-heading {
    font-size: 22px;
  }

  .connectivity-grid {
    gap: 10px;
  }

  .connectivity-grid span {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 12px 14px;
  }

  .connectivity-map iframe {
    height: 260px;
  }
}

@media (max-width: 991px) {
  .connectivity-section {
    display: flex;
    flex-direction: column;
  }

  .connectivity-map {
    order: 1;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .connectivity-grid {
    order: 2;
  }
}

/*-------------------Contact us section----------------*/
.contact-section {
  padding: 40px 20px;
  background: #f6f4ef;
}

.contact-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

.contact-image img {
  width: 450px;
  border-radius: 240px 240px 0 0;
  border: 2px solid #e6b473;
}

.contact-form-area {
  max-width: 580px;
  background: rgba(255,255,255,0.65);
  padding: 45px;
  border: 1px solid #f5e0c4;
}

.contact-form-area h2 {
  font-size: 36px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: #002147;
}

.contact-form-area p {
  font-size: 18px;
  margin-bottom: 30px;
}

.input-row {
  display: flex;
  gap: 12px;
}

.contact-form-area input {
  width: 100%;
  padding: 14px 22px;
  border-radius: 40px;
  background: transparent;
  border: 1px solid #947854;
  color: #5b4931;
  margin-bottom: 12px;
  font-size: 17px;
  outline: none;
}

.contact-form-area input::placeholder {
  color: #947854;
}

.contact-form-area button {
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  background: #c5a67e;
  border: none;
  color: #251e14;
  font-weight: 500;
  cursor: pointer;
  font-size: 18px;
  margin-top: 10px;
}

.project-footer {
  background: #251e14;
  padding: 50px 50px 5px;
  color: #fff;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 30px;
}

.footer-top h4 {
  color: #e5c191;
  margin-bottom: 10px;
  font-size: 25px;
}

.footer-top p {
  font-size: 17px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-top img {
  width: 80px;
  margin-top: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 25px;
}

.dispara {
  font-size: 15px;
  line-height: 1.7;
}

.footer-bottom a {
  color: #caa25c;
  text-decoration: none;
}

@media (max-width: 991px) {
  .contact-wrap {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .contact-image img {
    width: 280px;
  }

  .input-row {
    flex-direction: column;
    gap: 2px;
  }

  .footer-top {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 20px 10px;
  }

  .contact-form-area {
    padding: 30px 20px;
  }

  .contact-form-area h2 {
    font-size: 22px;
    letter-spacing: normal;
    margin-bottom: 10px;
  }

  .contact-form-area input {
    font-size: 16px;
    margin-bottom: 10px;
    padding: 10px 20px;
  }

  .contact-form-area button {
    padding: 10px;
  }

  .project-footer {
    padding: 35px 20px 30px;
  }

  .footer-top h4 {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .footer-top p {
    font-size: 16px;
    margin-top: 10px;
  }

  .dispara {
    font-size: 14px;
    padding-bottom: 20px;
  }
}


/*-----------------------------------whatsapp and call-----------------------*/
#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: #917855;
  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;
  } 
}
  
  
 