body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
  }
  
  .text-gradient {
    background-image: linear-gradient(to right, #04C097, #3F0197);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
  }


  .btn-gradient {
    background-image: linear-gradient(to right, #04C097, #3F0197) !important;
    color: white;
    padding: 0.5rem 1rem; 
    border-radius: 0.375rem; 
    font-weight: 500; 
    font-size: 15px; 
    transition: all 0.5s ease; 
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
    display: inline-block;
    text-align: center;
    cursor: pointer;
  }
  
  .btn-gradient:hover {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15); 
    transform: scale(1.05);
  }


  .after-line {
    position: relative;
  }
  
  .after-line::after {
    content: '';
    width: 48px; 
    height: 2px;
    background-image: linear-gradient(to right, #f472b6, #8b5cf6); 
    position: absolute;
    top: -8px;
    right: 0;
  }


  /* Thumbnail Navigation Styles */
  .thumbnail-btn {
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .thumbnail-btn:focus {
    outline: none;
  }
  
  .thumbnail-nav {
    position: relative;
  }

  .thumbnail-btn {
    position: relative;
    z-index: 1;
  }

  .e-con {
  --padding-top: var(--container-default-padding-top, 0px) !important;
  --padding-right: var(--container-default-padding-right, 0px) !important;
  --padding-left: var(--container-default-padding-left, 0px) !important;
  --padding-bottom: var(--container-default-padding-right, 0px) !important;
  }
.elementor-widget-text-editor {
  font-family: Poppins, Sans-serif !important;
  }
  .wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    border-color: #ffb900;
    color: red;
}

/* Contact Us page Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (min-width: 768px) {
  .form-row {
    flex-direction: row;
    justify-content: space-between;
  }
}

.form-group {
  width: 100%;
  position: relative;
}

.full-width {
  width: 100%;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #4B5563;
  margin-bottom: 6px;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 18px;
  height: 18px;
  color: #4B5563;
}

.form-input {
  padding: 10px 12px 10px 12px;
  width: 100%;
  font-size: 14px;
  color: #1F2937;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  outline: none;
  box-sizing: border-box;
  background-color: #ffffff;
}

.form-input:focus {
  border-color: #14B8A6;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.submit-button {
  width: 170px;
  padding: 10px 15px;
  background: linear-gradient(to right, #04C097, #3F0197);
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  scale: 0.95;
  transition: all 0.3s ease;
}

.submit-button:hover {
  scale: 1;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}
 /* Contact Us page Form */
 .wpcf7-not-valid-tip {
	font-size: 13px !important;
 }
 
 /* Landing Contact Form Styles */
.landing-contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.landing-contact-form .form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom:0px;
}

@media (min-width: 768px) {
  .landing-contact-form .form-grid {
    flex-direction: row;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }
}

.landing-contact-form .form-group {
  margin-bottom: 8px;
}

.landing-contact-form .form-input {
  border: 1px solid #D1D5DB;
  color: #374151;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.landing-contact-form .form-input:focus {
  border-color: #14B8A6;
  box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

.full-width {
  width: 100%;
}

.call-button {
  background: #fff;
  color: #111827;
  font-weight: 500;
  border: 1px solid #6B7280;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.call-button:hover {
  background: linear-gradient(to right, #04C097, #3F0197);
  color: white;
  border-color: transparent;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.checkbox-input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}
  /* Landing page contact form css */
  
  /* Schedule Demo Form Styles */
.schedule-demo-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-demo-form .form-group {
  display: flex;
  flex-direction: column;
}

.schedule-demo-form .form-row {
  display: flex;
  gap: 20px;
  width: 100%;
  flex-wrap: wrap;
}

.schedule-demo-form .form-half {
  width: 100%;
}

@media (min-width: 768px) {
  .schedule-demo-form .form-half {
    width: 48%;
  }
}

.schedule-demo-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 4px;
}

.schedule-demo-form .form-input,
.schedule-demo-form .form-textarea {
  width: 100%;
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #D1D5DB;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
.schedule-demo-form .form-textarea {
	height:100px;
}

.schedule-demo-form .form-input:focus,
.schedule-demo-form .form-textarea:focus {
  border-color: #6366F1;
}

.schedule-demo-form .form-textarea {
  resize: none;
}
 
.input-icon {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  color: #4B5563;
}

/******* blog details hero section *******/
.blog-details-hero-section {
  background: url("../images/contact-bg.svg") center/cover no-repeat;
  padding: 20px 16px;
}

.blog-details-hero-section {
  padding-top: 80px;
  padding-left: 48px;
  padding-right: 48px;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
}

.content-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  gap: 20px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
}

.image-left {
  width: 60%;
}

.text-right {
  width: 40%;
}

.image-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.15);
}

.text-right .heading-icon {
  width: 24px;
  margin-bottom: 4px;
  padding-top: 20px;
}

.text-right h1 {
  font-size: 36px;
  line-height: 45px;
  font-weight: 600;
  padding-bottom: 1.25rem;
  text-align: left;
  background: linear-gradient(to right, #04C097, #3F0197);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 768px) {
  .content-box {
    flex-direction: column;
    flex-direction: column-reverse;
    padding: 0px;
    box-shadow: none;
    background: transparent;
  }

  .image-left {
    width: 100%;
  }

  .text-right {
    width: 100%;
  }

  .image-left img{
   box-shadow: none;
  }
  .blog-details-hero-section {
    padding-top: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .text-right h1{
    font-size: 24px;
    line-height: 30px;
    text-align: center;
    padding-bottom: 0px;
  }
  .text-right .heading-icon {
    width: 24px;
    margin:0 auto;
  }
}

.custom-table {
  width: 100%;
  border-collapse: collapse; 
  margin: 15px 0px;
}
.custom-table th,
.custom-table td {
  border: 1px solid #ccc;  
  padding: 12px;          
  text-align: left;
}
.custom-table th {
  background-color: #f5f5f5;
}