
/** contact-section **/

.contact-section{
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  overflow: hidden;
}

.contact-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="15" fill="rgba(0,0,0,0.03)"/><circle cx="80" cy="80" r="25" fill="rgba(0,0,0,0.02)"/><circle cx="50" cy="50" r="30" fill="rgba(0,0,0,0.01)"/></svg>');
  background-size: 300px 300px;
  animation: float-bg 25s ease-in-out infinite;
  z-index: 0;
}

.contact-section > .auto-container{
  position: relative;
  z-index: 1;
}

.contact-section .single-info{
  position: relative;
  display: block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  overflow: hidden;
  margin-bottom: 30px;
}

.contact-section .single-info::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.contact-section .single-info:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.contact-section .single-info .icon-box{
  position: absolute;
  display: inline-block;
  left: 0px;
  top: 8px;
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 30px;
  color: #000000;
  text-align: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.contact-section .single-info:hover .icon-box{
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.contact-section .single-info h4{
  display: block;
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000000;
  transition: all 0.3s ease;
  margin-top:44px;
}

.contact-section .single-info:hover h4{
  color: #000000;
}



.contact-section .single-info p a{
  display: inline-block;
  color: #000000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-section .single-info p a:hover{
  color: #000000;
}

.contact-section .form-inner{
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-section .form-inner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.contact-section .form-inner:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.contact-section .form-inner .form-group{
  position: relative;
  display: block;
  margin-bottom: 22px;
}

.contact-section .form-inner .form-group label{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  color: var(--title-color);
  margin-bottom: 8px;
}

.contact-section .form-inner .form-group label span{
  
}



.contact-section .form-inner .form-group input,
.contact-section .form-inner .form-group textarea{
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 12px 15px;
  color: #000000;
  transition: all 0.3s ease;
}

.contact-section .form-inner .form-group input:focus,
.contact-section .form-inner .form-group textarea:focus{
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-section .form-inner .form-group textarea{
  height: 195px;
  resize: none;
  border-radius: 20px;
}

.contact-section .form-inner .form-group .theme-btn{
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  transition: all 0.3s ease;
}

.contact-section .form-inner .form-group .theme-btn:hover{
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-section .map-inner{
  position: relative;
  display: block;
  height: 500px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  overflow: hidden;
  transition: all 0.3s ease;
}

.contact-section .map-inner::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.contact-section .map-inner:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

.contact-section .map-inner iframe{
  position: relative;
  width: 100%;
  height: 100%;
}


/* Animations */
@keyframes float-bg {
  0%, 100% {
    transform: translate(0px, 0px) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .contact-section .single-info{
    padding: 30px 20px;
  }
  
  .contact-section .form-inner{
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .contact-section .single-info{
    padding: 25px 15px;
  }
  
  .contact-section .single-info .icon-box{
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 24px;
    top: 5px;
  }
  
  .contact-section .form-inner{
    padding: 25px 15px;
  }
  
  .contact-section .map-inner{
    height: 400px;
  }
}

@media (max-width: 575px) {
  .contact-section .single-info{
    padding: 20px 15px;
  }
  
  .contact-section .single-info .icon-box{
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 20px;
  }
  
  .contact-section .form-inner{
    padding: 20px 15px;
  }
  
  .contact-section .map-inner{
    height: 350px;
  }
}

/* Map Location Info */
.contact-section .map-location-info {
  position: relative;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.contact-section .map-location-info::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 16px;
  z-index: -1;
}

.contact-section .map-location-info h4{
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.contact-section .map-location-info p{
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
  margin: 0;
  transition: all 0.3s ease;
}

.contact-section .map-location-info:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.35);
}

/* Map Button */
.contact-section .map-button{
  display: inline-block;
  padding: 12px 24px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-section .map-button:hover{
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/** rtl-css **/

.rtl .contact-section .single-info{
  padding-left: 0px;
  padding-right: 95px;
}

.rtl .contact-section .single-info .icon-box{
  left: inherit;
  right: 0px;
}

/** responsive-css **/

@media only screen and (max-width: 1200px){

}

@media only screen and (max-width: 991px){

}

@media only screen and (max-width: 767px){
  .contact-section{
    padding: 65px 0px 70px 0px;
  }
}

@media only screen and (max-width: 599px){

}

@media only screen and (max-width: 499px){

}











































