@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');
* {
  font-family: "Plus Jakarta 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: #bd0000;
}

/*---------------------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: #000e2f;
  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: #000e2f;
  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: #bd0000;
  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: #000e2f;
  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: #bd0000;
  color: #fff;
}

@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-----------------------*/
.hero-wrapper{
  width:100%;
  background:#f6efe6;
  padding:10px 5px;
}

.hero-flex{
  display:flex;
  gap:15px;
  align-items:stretch;
}

.hero-image{
  flex:0 0 60%;
  position:relative;
}

.hero-image img{
  width:100%;
  height:620px;
  object-fit:cover;
  border-radius:12px;
}

.hero-content{
  flex:0 0 40%;
  background: #f8f5ef;
  color:#000e2f;
  border-radius:12px;
  padding:30px;
  display:flex;
  align-items:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.25);
}

.hero-tagline{
  font-size:16px;
  letter-spacing:1px;
  color:#bd0000;
  margin-bottom:10px;
}

.content-box h2{
  font-size: 35px;
  margin-bottom:5px;
}

.location{
  font-size:18px;
  margin-bottom:15px;
  color:#000;
}

.content-box h3{
  font-size:26px;
  margin-bottom:18px;
}

.price-tag{
  background: #000e2f;
  border-left: 4px solid #bd0000;
  color: #fff;
  padding: 10px 15px;
  margin-bottom:15px;
  font-size: 20px;
}

.price-highlight{
  color:#ff3b3b;
  font-size: 28px;
  font-weight:bold;
}

.eoi-strip{
  background:#bd0000;
  color:#fff;
  padding: 8px 12px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom:20px;
  border-radius: 4px;
  letter-spacing: 1px;
}

.features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 14px;
  background: transparent;
  border: 1px solid #000;
  padding: 8px;
  border-radius: 6px;
}

.feature-item i{
  color:#bd0000;
}

.hero-prev,.hero-next{
  width: 45px;
}

.hero-prev span,.hero-next span{
  font-size:26px;
  color:#000e2f;
}


/* ===================== LARGE LAPTOP (1300px ↓) ===================== */
@media (max-width:1300px){

.hero-image{
  flex:0 0 60%;
}

.hero-content{
  flex:0 0 40%;
  padding:25px;
}

.hero-image img{
  height:600px;
}

.content-box h2{
  font-size:34px;
}

.content-box h3{
  font-size:22px;
}

.price-highlight{
  font-size:22px;
}

}


/* ===================== LAPTOP / TABLET (991px ↓) ===================== */
@media (max-width:991px){

.hero-flex{
  flex-direction:column;
}

.hero-image{
  flex:100%;
}

.hero-image img{
  height:450px;
  border-radius:12px;
}

.hero-content{
  flex:100%;
  margin-top:-30px;
  border-radius:16px;
  padding:25px 18px;
  text-align:center;
}

.content-box{
  width:100%;
}

.features{
  grid-template-columns:1fr 1fr;
  gap:8px;
}

.feature-item{
  justify-content:center;
}

.hero-prev,.hero-next{
  position:absolute;
  top:45%;
  transform:translateY(-50%);
  width:38px;
}

.hero-prev{ left:10px; }
.hero-next{ right:10px; }

}


/* ===================== SMALL TABLET (768px ↓) ===================== */
@media (max-width:768px){

.hero-image img{
  height:400px;
}

.content-box h2{
  font-size:28px;
}

.content-box h3{
  font-size:20px;
}

.location{
  font-size:14px;
}

.price-tag{
  padding:8px 12px;
}

.price-highlight{
  font-size:20px;
}

.eoi-strip{
  font-size:13px;
  padding:6px 10px;
}

.features{
  grid-template-columns:1fr;
}

}


/* ===================== MOBILE (576px ↓) ===================== */
@media (max-width:576px){

.hero-wrapper{
  padding:12px 8px;
}

.hero-image img{
  height:300px;
}

.hero-content{
  padding:18px 12px;
}

.hero-tagline{
  font-size:12px;
  font-weight: 500;
  margin-top: 20px;
}

.content-box h2{
  font-size:22px;
}

.content-box h3{
  font-size:16px;
}

.price-tag{
  font-size:13px;
  padding:6px 10px;
}

.price-highlight{
  font-size:18px;
}

.feature-item{
  font-size:13px;
  padding:6px;
}

.eoi-strip{
  font-size:12px;
  letter-spacing: 0;
}

.hero-prev span,
.hero-next span{
  font-size:14px;
}

}


/* ===================== SMALL MOBILE (420px ↓) ===================== */
@media (max-width:420px){

.hero-image img{
  height:260px;
}

.content-box h2{
  font-size:20px;
}

.content-box h3{
  font-size:15px;
}

.price-highlight{
  font-size:16px;
}

.features{
  gap:6px;
}

}


/* ===================== EXTRA SMALL (360px ↓) ===================== */
@media (max-width:360px){

.hero-image img{
  height:240px;
}

.hero-content{
  padding:15px 10px;
}

.content-box h2{
  font-size:18px;
}

.content-box h3{
  font-size:14px;
}

.price-tag{
  font-size:12px;
}

.price-highlight{
  font-size:15px;
}

.feature-item{
  font-size:12px;
}

}

/*--------------------Overview Section----------------------------*/
.overview-sec{
  padding: 50px 20px;
}

.overview-wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.overview-img{
  flex: 1;
  min-width: 300px;
}

.overview-img img{
  width: 100%;
  height: auto;
  display: block;
}

.overview-content{
  flex: 1;
  min-width: 300px;
}

.overview-content h1{
  font-size: 38px;
  margin-bottom: 10px;
  color: #000e2f;
}

.line{
  width: 60px;
  height: 3px;
  background: #bd0000;
  margin-bottom: 20px;
}

.overview-content p{
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}


@media (max-width: 992px){
  .overview-wrap{
    gap: 30px;
  }

  .overview-content h1{
    font-size: 30px;
  }

}

@media (max-width: 768px){
  .overview-sec{
    padding: 20px 10px;
  }

  .overview-wrap{
    flex-direction: column;
  }

  .overview-img,
  .overview-content{
    width: 100%;
  }

  .overview-content{
    text-align: center;
  }

  .overview-wrap {
    gap: 20px;
  }

  .overview-content h1{
    font-size: 22px;
  }

  .overview-content p{
    font-size: 14px;
  }

  .line{
    margin: 10px auto 20px;
  }

}

/*---------------------Project Highlights Section------------------*/
.highlights-sec{
  padding: 50px 20px;
}

.highlights-title{
  text-align: center;
  margin-bottom: 30px;
}

.highlights-title h2{
  font-size: 32px;
  margin-top: 10px;
  color: #000e2f;
}

.highlights-wrap{
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.highlights-img{
  flex: 1;
  min-width: 300px;
}

.highlights-img img{
  width: 100%;
  display: block;
}

.highlights-list{
  flex: 1;
  min-width: 300px;
}

.item{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

.item span{
  font-size: 28px;
  width: 60px;
  color: #999;
}

.item p{
  margin: 0;
  font-size: 16px;
}

@media (max-width: 992px){
  .highlights-title h2{
    font-size: 26px;
  }

  .item span{
    font-size: 24px;
    width: 50px;
  }

}

@media (max-width: 768px){
  .highlights-sec{
    padding: 20px 10px;
  }

  .highlights-wrap{
    flex-direction: column;
    gap: 20px;
  }

  .highlights-img,
  .highlights-list{
    width: 100%;
  }

  .highlights-title h2{
    font-size: 22px;
  }

  .item{
    padding: 12px 0;
  }

  .item span{
    font-size: 20px;
    width: 40px;
  }

  .item p{
    font-size: 14px;
  }

}

/*-----------------------Amenities Section-------------------------*/
.amenities-section{
  padding: 50px 50px;
  background: #f8f5ef;
}

.amenities-header{
  text-align: center;
  margin-bottom: 40px;
}

.amenities-header h1{
  font-size: 38px;
  color: #000e2f;
}

.amenities-line{
  width: 70px;
  height: 2px;
  background: linear-gradient(90deg,#000e2f,#bd0000);
  margin: 15px auto 0;
}

.amenities-wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.amenity-item{
  padding: 20px 25px;
  font-size: 15.5px;
  color: #333;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid rgba(0,14,47,0.08);
  position: relative;
}

.amenity-item:before{
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 3px;
  background: linear-gradient(#000e2f,#bd0000);
}

@media(max-width: 992px){
  .amenities-wrapper{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width: 576px){
  .amenities-wrapper{
    grid-template-columns: 1fr;
  }
}

@media(max-width: 768px){
  .amenities-section {
    padding: 20px 10px;
  }

  .amenities-header h1 {
    font-size: 25px;
  }

  .amenities-header {
    margin-bottom: 20px;
  }

  .amenity-item {
    padding: 10px 20px;
    font-size: 14px;
  }

  .amenities-wrapper {
    gap: 10px;
  }

}

/*--------------------Configuration Section-----------------------*/
.config-section{
  padding: 50px 40px;
  background:#ffffff;
}

.config-head{
  max-width: 1200px;
  margin: auto;
  margin-bottom: 50px;
}

.config-head h1{
  font-size: 20px;
  color:#bd0000;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.config-head h2{
  font-size: 38px;
  color:#000e2f;
  line-height: 1.3;
}

.config-list{
  max-width: 1200px;
  margin: auto;
}

.config-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
}

.config-left h3{
  font-size: 36px;
  font-weight: 500;
  color:#000;
}

.config-center p{
  font-size: 16px;
  letter-spacing: 2px;
  color:#737373;
}

.config-center h4{
  font-size: 20px;
  margin-top: 6px;
  color:#222;
  font-weight: 600;
}

.config-right button{
  background:#000e2f;
  color:#fff;
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.6px;
  transition: 0.3s;
}

.config-right button:hover{
  background: transparent;
  border: 1px solid #bd0000;
  color:#bd0000;
}

.config-line{
  height: 1px;
  background:#cecece;
}

@media (max-width:1200px){
  .config-section{
    padding:50px 30px;
  }
}

@media (max-width:992px){
  .config-head h2{
    font-size:32px;
  }

  .config-left h3{
    font-size:30px;
  }

  .config-center h4{
    font-size:18px;
  }

  .config-right button{
    padding:10px 24px;
  }

}

@media (max-width:768px){
  .config-section{
    padding: 20px 10px;
  }

  .config-head{
    text-align:center;
    margin-bottom: 20px;
  }

  .config-head h2{
    font-size:26px;
  }

  .config-row{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:15px;
  }

  .config-left h3{
    font-size:28px;
  }

  .config-center p{
    font-size:14px;
    letter-spacing:1.5px;
  }

  .config-center h4{
    font-size:18px;
  }

  .config-right button{
    width:100%;
    max-width:220px;
  }

}

@media (max-width:768px){
  .config-row{
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 20px 15px;
    margin-bottom: 10px;
  }

  .config-line{
    display:none;
  }

}

@media (max-width:576px){
  .config-section{
    padding: 20px 10px;
  }

  .config-head {
    margin-bottom: 20px;
  }

  .config-head h1{
    font-size: 16px;
    margin-bottom: 10px;
  }

  .config-head h2{
    font-size: 20px;
    line-height:1.4;
  }

  .config-left h3{
    font-size:24px;
  }

  .config-center p{
    font-size:13px;
  }

  .config-center h4{
    font-size:16px;
  }

  .config-row{
    padding:20px 0;
  }

  .config-line{
    margin:10px 0;
  }

}

/*----------------------Unit Plans Section-----------------------*/
.unit-section{
  padding: 50px 20px;
}

.unit-head{
  max-width: 1200px;
  margin: auto;
  margin-bottom: 30px;
}

.unit-head h1{
  font-size: 20px;
  color:#bd0000;
  margin-bottom: 10px;
}

.unit-head h2{
  font-size: 36px;
  color:#000e2f;
}

.unit-wrapper{
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 25px;
}

.unit-card{
  flex: 1;
  text-align: center;
}

.unit-img{
  position: relative;
  width: 100%;
  height: 260px; 
  overflow: hidden;
  border: 1px solid #bd0000;
}

.unit-img img{
  width: 100%;
  height: 100%;
  object-fit: cover; 
  filter: blur(2px);
}

.unit-btn{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  padding: 12px 0;
  background:#000e2f;
  color:#fff;
  font-size: 14px;
  letter-spacing: 0.6px;
  border: none;
}

.unit-card h3{
  margin-top: 15px;
  font-size: 20px;
  color:#000;
}

@media(max-width:768px){
  .unit-section{
    padding: 20px 10px;
  }

  .unit-head{
    text-align:center;
    margin-bottom: 10px;
  }

  .unit-head h2{
    font-size: 20px;
  }

  .unit-wrapper{
    flex-direction: column;
    gap: 15px;
  }

  .unit-img{
    height: 220px;
  }

}

/*--------------------Location Section--------------------*/
.location-section{
  position: relative;
  padding: 50px 20px;
}

.location-map iframe{
  width: 100%;
  height: 500px;
}

.location-content{
  max-width: 1200px;
  margin: -100px auto 0;
  background: #f8f5ef;
  padding: 50px;
  backdrop-filter: blur(10px);
  border-radius: 12px;
}

.loc-tag{
  font-size: 13px;
  letter-spacing: 2px;
  color:#bd0000;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.loc-heading{
  font-size: 36px;
  color:#000e2f;
  margin-bottom: 40px;
  line-height: 1.3;
}

.location-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
}

.loc-item{
  padding: 15px 0;
}

.loc-item h3{
  font-size: 18px;
  color:#000e2f;
  font-weight: 600;
  margin-bottom: 5px;
}

.loc-item p{
  font-size: 18px;
  color:#555;
  line-height: 1.4;
}

.loc-item h3{
  position: relative;
  display: inline-block;
}

.loc-item h3:after{
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background:#bd0000;
  margin-top: 6px;
}

@media (max-width:1200px){
  .location-content{
    padding: 45px;
    margin-top: -90px;
  }

  .loc-heading{
    font-size: 32px;
  }

}

@media (max-width:992px){
  .location-map iframe{
    height: 420px;
  }

  .location-content{
    margin: -80px 20px 0;
    padding: 40px;
  }

  .location-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
  }

}

@media (max-width:768px){
  .location-map iframe{
    height: 380px;
  }

  .location-content{
    margin: -70px 15px 0;
    padding: 30px 25px;
    border-radius: 10px;
  }

  .loc-heading{
    font-size: 26px;
    margin-bottom: 10px;
  }

  .location-grid{
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
  }

  .loc-item h3{
    font-size: 16px;
  }

  .loc-item p{
    font-size: 16px;
  }

}

@media (max-width:576px){
  .location-map iframe{
    height: 320px;
  }

  .location-content{
    margin: -60px 10px 0;
    padding: 20px 10px;
  }

  .loc-heading{
    font-size: 24px;
    margin-bottom: 10px;
  }

}

@media (max-width:480px){
  .location-section{
    padding: 20px 10px;
  }

  .location-content{
    margin: -50px 0 0;
    padding: 25px 18px;
  }

  .location-grid{
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .loc-item{
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 5px 0;
  }

  .loc-item:last-child{
    border-bottom: none;
  }

  .loc-item h3{
    font-size: 16px;
  }

  .loc-item p{
    font-size: 16px;
  }

  .loc-heading{
    font-size: 20px;
    margin-bottom: 10px;
  }

  .location-content{
    margin-top: 10px; 
  }

}

@media (max-width:360px){
  .loc-heading{
    font-size: 20px;
  }

  .location-content{
    padding: 20px 10px;
  }

  .loc-item h3{
    font-size: 16px;
  }

  .loc-item p{
    font-size: 16px;
  }

  .loc-heading{
    font-size: 20px;
    margin-bottom: 10px;
  }

  .location-content{
    margin-top: 10px; 
  }

}

/*------------------------Contact us Section------------------------*/
.contact-clean{
  background:#fffefc;
  padding: 50px 20px;
}

.contact-clean-container{
  max-width: 1200px;
  margin: auto;
}

.contact-tag{
  font-size: 16px;
  letter-spacing: 2px;
  color:#bd0000;
  margin-bottom: 10px;
  text-align: center;
}

.contact-heading{
  font-size: 36px;
  color:#000e2f;
  margin-bottom: 40px;
  text-align: center;
}

.contact-clean-flex{
  display:flex;
  gap: 30px;
  align-items: flex-start;
}

.contact-form-clean{
  flex: 1;
  background:#fff;
  padding: 45px;
  border-radius: 12px;
  border: 1px solid #000e2f;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.form-group-clean{
  margin-bottom: 18px;
}

.form-group-clean input{
  width: 100%;
  padding: 14px;
  border: 1px solid #000e2f;
  border-radius: 6px;
  font-size: 16px;
  background: #fafafa;
  transition: 0.3s;
}

.form-group-clean input:focus{
  background: #fff;
  border-color: #bd0000;
  outline: none;
  box-shadow: 0 0 0 3px rgba(189,0,0,0.08);
}

.contact-form-clean button{
  width: 100%;
  padding: 14px;
  background: #bd0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  cursor:pointer;
  margin-top: 10px;
}

.contact-form-clean button:hover{
  background: #000e2f;
}

.contact-info-clean{
  flex: 1;
  padding-top: 10px;
}

.info-block-clean{
  margin-bottom: 30px;
}

.info-block-clean span{
  font-size: 16px;
  font-weight: 600;
  color: #bd0000;
  letter-spacing: 1px;
}

.info-block-clean p{
  font-size: 18px;
  color:#222;
  margin-top: 4px;
}

.rera-clean{
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.rera-item{
  text-align:center;
}

.rera-item img{
  width: 80px;
  padding: 8px;
  background:#fff;
  border: 1px solid #000e2f;
  border-radius: 8px;
}

.rera-item p{
  font-size: 14px;
  margin-top: 6px;
  color:#333;
}

.contact-disclaimer-clean{
  margin-top: 30px;
  text-align: center;
}

.contact-disclaimer-clean p{
  font-size: 13px;
  color:#666;
  max-width: 1000px;
  margin: auto;
  line-height: 1.6;
}

.privacy-policy-link{
  color: #000e2f;
}

.privacy-policy-link:hover {
  color: #000e2f;
  text-decoration: none;
}

@media (max-width: 1200px){
  .contact-clean-container{
    max-width: 95%;
  }
}

@media (max-width: 991px){
  .contact-clean-flex{
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .contact-form-clean,
  .contact-info-clean{
    width: 100%;
  }

  .contact-form-clean{
    padding: 30px;
  }
}

@media (max-width: 768px){
  .contact-clean{
    padding: 20px 12px;
  }

  .contact-heading{
    font-size: 24px;
    margin-bottom: 15px;
  }

  .contact-clean-flex{
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .contact-form-clean{
    padding: 26px;
  }

  .info-block-clean p{
    font-size: 16px;
  }
}

@media (max-width: 576px){
  .contact-clean{
    padding: 20px 12px;
  }

  .contact-heading{
    font-size: 22px;
    margin-bottom: 15px;
  }

  .contact-clean-flex{
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .contact-form-clean{
    padding: 24px;
  }

  .form-group-clean input{
    padding: 12px;
    font-size: 15px;
  }

  .contact-form-clean button{
    padding: 13px;
    font-size: 15px;
  }

  .info-block-clean p{
    font-size: 15px;
  }

  .contact-disclaimer-clean{
    margin-top: 2px;
    padding-bottom: 30px;
  }

  .contact-disclaimer-clean p{
    font-size: 12px;
  }
}

/*-----------------------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: #bd0000;
  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;
  } 
}
  
  
 