body{
  font-family: "Inter", sans-serif;
  background: #fafafa;
  margin: 0;
  padding: 0;
}
.contact-details-div{
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-content: center;
}
@property --t-1-x{
  syntax: "<percentage>"; inherits: false; initial-value: 80%;
}
@property --t-2-x{
  syntax: "<percentage>"; inherits: false; initial-value: 20%;
}
@property --t-3-x{
  syntax: "<percentage>"; inherits: false; initial-value: 50%;
}
@property --t-1-y{
  syntax: "<percentage>"; inherits: false; initial-value: 10%;
}
@property --t-2-y{
  syntax: "<percentage>"; inherits: false; initial-value: 15%;
}
@property --t-3-y{
  syntax: "<percentage>"; inherits: false; initial-value: 5%;
}
.text-dark{
  font-size: 2.8em;
}
.phone-icon{
  font-size: 2em;
}
.contact-hero{
  min-height: 60vh;
  display: flex;
  position: relative;
  align-items: center;
  background:
    radial-gradient(60% 60% at var(--t-1-x) var(--t-1-y), #FD7E87 0%, transparent),
    radial-gradient(60% 60% at var(--t-2-x) var(--t-2-y), #FEB95A 0%, transparent),
    radial-gradient(60% 60% at var(--t-3-x) var(--t-3-y), #743dbb 0%, transparent),
    #fafbfc;
  animation: top-gradient-flow 2s ease-in-out infinite alternate;
}
.hero-heading-section{
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-content:center;
}
.hero-icon-wrapper{
  padding: 0.6em;
}
@keyframes top-gradient-flow{
  0% {
  --t-1-x: 10%;
    --t-2-x: 50%;
    --t-3-x: 90%;
}
  100% {
  --t-1-x: 90%;
    --t-2-x: 10%;
    --t-3-x: 50%;
}
}
.hero-heading-section{
  display: flex;
  align-items: start;
  text-align: start;
  flex-direction: row;
}
.hero-text-secondary{
  font-size: 0.3em;
}
.col-lg-6{
  padding-left:3.5em;
}
.contact-form-heading{
  display: flex;
  flex-direction: row;
}
.contact-form-icon{
  font-size: 40px;
  padding-right: 0.5em;
}
.contact-logo{
  max-width: 40em;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}
.contact-vertical-subheading{
  color: grey;
}
.contact-form-wrapper{
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact-form .form-control,
.contact-form .form-select{
  border: 2px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus{
  border-color: #7E47C5;
  box-shadow: 0 0 0 0.2rem rgba(117, 13, 253, 0.2);
}
.contact-info-vertical-heading{
  display: flex;
  flex-direction: row;
}
.contact-info-icon{
  font-size: 30px;
  padding-right: 0.8em;
}
.contact-form .form-label{
  color: #495057;
  margin-bottom: 0.5rem;
}
.contact-form .form-group{
  display: flex;
  flex-direction: column;
}
.contact-form .message-group{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-form textarea{
  resize: vertical;
  min-height: 120px;
  flex: 1;
}
.contact-form .btn{
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
}
.btn{
  background-color: #7E47C5;
  border-style: solid;
  border-color: #7E47C5;
  border-width: 5px;
}
.btn:hover{
  background-color: transparent;
  border-color: #7E47C5;
  color:#7E47C5;
  transition: background-color 10ms color 10ms;
}
.btn:active{
  background-color: #7E47C5;
  transition:background-color 10ms;
}
.contact-form .btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(165, 13, 253, 0.1);
}
.contact-form{
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact-info-wrapper{
  background: #fff;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px;
  /* box-shadow: 0 10px 30px rgba(4, 0, 10, 0.1); */
  border: 1px solid #e9ecef;
  height: fit-content;
}
.faq-item{
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}
.faq-item h4{
  color: #212529;
  margin-bottom: 1rem;
}
.faq-item p{
  color: #6c757d;
  line-height: 1.6;
  margin-bottom: 0;
}
.btn-primary:active{
  background-color: #743dbb;
  color: white;
}
@media (max-width: 768px){
  .contact-hero{
  padding: 2rem 0;
}
.contact-logo{
  max-width: 200px;
}
.contact-form-wrapper,
  .contact-info-wrapper{
  padding: 1.5rem;
}
.faq-item{
  padding: 1.5rem;
}
}
@media (max-width: 576px){
  .contact-form-wrapper,
  .contact-info-wrapper{
  padding: 1rem;
}
.contact-form .btn{
  width: 100%;
}
}
.faq-conatiner{
  display: flex;
  justify-content: center;
  flex-direction: row;
  justify-items: start;
}
.faq-icon{
  font-size: 3em;
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@keyframes slideIn{
  from {
  opacity: 0;
    transform: translateY(-20px);
}
  to {
  opacity: 1;
    transform: translateY(0);
}
}
a{
  margin: 0;
}
@property --b-1-x{
  syntax: "<percentage>"; inherits: false; initial-value: 80%; 
}
@property --b-1-y{
  syntax: "<percentage>"; inherits: false; initial-value: 90%; 
}
@property --b-2-x{
  syntax: "<percentage>"; inherits: false; initial-value: 20%; 
}
@property --b-2-y{
  syntax: "<percentage>"; inherits: false; initial-value: 85%; 
}
@property --b-3-x{
  syntax: "<percentage>"; inherits: false; initial-value: 50%; 
}
@property --b-3-y{
  syntax: "<percentage>"; inherits: false; initial-value: 95%; 
}
.faq-section{
  min-height: 60vh;
  position: relative;
  background:
    radial-gradient(60% 60% at var(--b-1-x) var(--b-1-y), #FD7E87 0%, transparent),
    radial-gradient(60% 60% at var(--b-2-x) var(--b-2-y), #FEB95A 0%, transparent),
    radial-gradient(60% 60% at var(--b-3-x) var(--b-3-y), #743dbb 0%, transparent),
    #fafbfc;
  animation: bottom-gradient-flow 2s ease-in-out infinite alternate;
}
@keyframes bottom-gradient-flow{
  0% {
  --b-1-x: 10%;
    --b-2-x: 50%;
    --b-3-x: 90%;
}
  100% {
  --b-1-x: 90%;
    --b-2-x: 10%;
    --b-3-x: 50%;
}
}
@keyframes custom-bounce{
  0%, 5%, 15%, 25%, 30% { transform: translateY(0); }
  10% { transform: translateY(-20px); } 
  20% { transform: translateY(-10px); } 
  31%, 100% { transform: translateY(0); }
}
.phone-icon{
  display: inline-block;
  animation: custom-bounce 3s infinite;
}

.contact-item-heading-wrapper{
  display: flex;
  flex-direction: row;
  align-items: center;
  align-content: center;
  padding: 15px 0;
}
.contact-heading-icon{  
  margin: 0;
  padding: 0;
  padding: 5px;
  color: #7E47C5;
}

.contact-heading{
  font-weight: bold;
  color: #7E47C5;
}
.contact-item-wrapper{
  display: flex;
  flex-direction: row;
  padding:5px 0;
  margin-bottom: 10px;
}
.contact-item-icon{
  font-size: 20px;
  padding-top: 3px;
  padding-right: 5px;
}
.contact-item-text{
  color: black;
  text-decoration: none;
  transition:color 0.3s ease-in-out;
}
.contact-item-text:hover{
  color: #743dbb;
}
.contact-heading-icon-wrapper{
  border-style: solid;
  color: #7E47C5;
  font-weight: bold;
  border-color: #7E47C5;
  border-radius: 100px;
  padding: 5px;
  margin: 5px 0;
  margin-right: 10px;
}
.contact-heading-icon-wrapper:hover{
  color: white;
  background-color: #7E47C5;
  transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
}


.whatsapp-contact-icon,.email-icon,.facebook-linked-icon,.instagram-contact-icon{
  margin:0;
  padding: 0;
  font-size: 25px;
  padding-right:10px;
}

.whatsapp-contact-icon{
  color: #25D366;
}
.email-icon{
  color: #FD7E87;
}
.facebook-linked-icon{
  color: #1877F2;
}
.instagram-contact-icon{
  color: #d62976;
  margin-right: 5px;
}
.linkedin-icon{
  margin-right:5px;
}