
/** contact-section **/

 

.contact-section{
  position:relative;
  padding:150px 0;
  background:linear-gradient(135deg,#f9fbff,#eef2ff);
  overflow:hidden;
}

 

.contact-section::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:radial-gradient(circle,#0E1D40 0%,transparent 70%);
  top:-200px;
  right:-200px;
  opacity:.05;
  animation:floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow{
  0%{transform:translateY(0);}
  100%{transform:translateY(40px);}
}

 

.contact-section .content-box{
  position:relative;
  background:#ffffff;
  border-radius:30px;
  padding:60px;
  box-shadow:0 30px 80px rgba(0,0,0,0.06);
  transition:.4s ease;
}

.contact-section .content-box:hover{
  transform:translateY(-10px);
}

 

.contact-section .info-list li{
  position:relative;
  padding:35px 30px 35px 115px;
  margin-bottom:30px;
  border-radius:22px;
  background:#ffffff;
  box-shadow:0 20px 60px rgba(0,0,0,0.06);
  transition:.4s ease;
  min-height:130px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.contact-section .info-list li:hover{
  transform:translateX(10px);
  box-shadow:0 35px 90px rgba(0,0,0,0.12);
}

 

.contact-section .info-list li .icon{
  position:absolute;
  left:30px;
  top:50%;
  transform:translateY(-50%);
  width:65px;
  height:65px;
  line-height:65px;
  text-align:center;
  border-radius:16px;
  font-size:22px;
  color:#ffffff;
  background:#0E1D40;
  box-shadow:0 15px 35px rgba(14,29,64,0.35);
  transition:.4s ease;
}

.contact-section .info-list li:hover .icon{
  transform:translateY(-50%) scale(1.1);
}

 

.contact-section .info-list li h4{
  font-size:20px;
  font-weight:600;
  margin-bottom:8px;
  color:#111827;
}

.contact-section .info-list li p,
.contact-section .info-list li a{
  font-size:15px;
  line-height:24px;
  color:#6b7280;
  word-break:break-word;
  transition:.3s ease;
}

.contact-section .info-list li a:hover{
  color:#0E1D40;
}

 


.contact-section .form-inner{
  background:#ffffff;
  padding:80px;
  border-radius:35px;
  box-shadow:0 40px 120px rgba(0,0,0,0.08);
  transition:.4s ease;
}

.contact-section .form-inner:hover{
  transform:translateY(-8px);
}

 

.contact-section input,
.contact-section textarea{
  width:100%;
  padding:18px 20px;
  border-radius:14px;
  border:1px solid #0E1D40;
  font-size:14px;
  transition:.3s ease;
  box-shadow:0 5px 15px rgba(0,0,0,0.03);
}

.contact-section textarea{
  min-height:160px;
  resize:none;
}

.contact-section input:focus,
.contact-section textarea:focus{
  outline:none;
  border-color:#0E1D40;
  box-shadow:0 0 0 4px rgba(14,29,64,0.12);
  transform:translateY(-3px);
}

 

.contact-section .contact-btn{
  width:100%;
  padding:18px;
  border-radius:50px;
  font-weight:600;
  font-size:15px;
  color:#ffffff;
  background:#0E1D40;
  border:none;
  transition:.4s ease;
}

.contact-section .contact-btn:hover{
  background:#142a63;
  transform:translateY(-5px);
  box-shadow:0 25px 60px rgba(14,29,64,0.4);
}

 
 

@media(max-width:991px){

  .contact-section{
    padding:100px 0;
  }

  .contact-section .content-box{
    margin-bottom:40px;
    padding:40px;
  }

  .contact-section .form-inner{
    padding:50px;
  }

  
}

@media(max-width:576px){

  .contact-section .content-box,
  .contact-section .form-inner{
    padding:30px 20px;
  }

  .contact-section .info-list li{
    padding:30px 20px 30px 95px;
  }

  .contact-section .info-list li .icon{
    width:55px;
    height:55px;
    line-height:55px;
    font-size:18px;
  }

   
}
.google-map-section{
  position: relative;
}

.google-map-section #contact-google-map{
  position: relative;
  width: 100%;
  height: 620px;
}












































