@import url('https://calculatorexpress.com/Euploads/ICONS/icons.css');
/* ------------------ */
    .site-header {
  background: linear-gradient(90deg, rgba(0,0,0,0.6), rgba(0,0,0,0.6));
  color: #fff;
  position: fixed;
  width: 100%;
  z-index: 1000;
}
.site-header a {
  color: #ffb923;
}


/* ------------------ */


/* ------------------ */
#gdl-publish-guide {
    z-index: 0;
}



.inj-header{
    position:relative;
}

.inj-logo{
        width: 60px;
        left:0;
}
    
.inj-service-icon img{
width: 80px        
}

.footer-logo{
    width: 120px
}
    
    
/* ------------------ */

/* ------  Subscribe Form ------------ */

    .subscribe-form {
      display: flex;
      border-radius: 40px;
      overflow: hidden;
      background: #fff;
      width: 400px;
      max-width: 100%;
    }

    .subscribe-form input[type="email"] {
      flex: 1;
      border: none;
      padding: 14px 18px;
      font-size: 14px;
      outline: none;
    }

    .subscribe-form button {
      background: #fcb424;
      border: none;
      padding: 14px 25px;
      color: #fff;
      font-weight: bold;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .subscribe-form button:hover {
      background: #e09e00;
    }

    .subscribe-form button i {
      font-size: 14px;
    }

    .message {
      margin-top: 15px;
      font-size: 14px;
      color: #fff;
      text-align: center;
    }
/* ------  Subscribe Form ------------ */

/* ------  Contact Form ------------ */

    :root {
      --inj-primary-color: #ffb400; /* Change this to update theme color */
    }

  
    .contact-container {
  display: flex;
  max-width: 900px;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  align-items: stretch;   /* make both sides equal height */
  margin: auto;
}

.contact-info {
  flex: 0 0 40%;          /* fixed 40% width, won’t shrink */
  background: var(--inj-primary-color);
  padding: 40px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form {
  flex: 0 0 60%;          /* fixed 60% width */
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
/*  max-width: 350px;*/
}


    .contact-info h2 {
      margin-bottom: 15px;
    }

    .contact-info p {
      line-height: 1.6;
    }

    

    .contact-form h2 {
      margin-bottom: 15px;
      color: #333;
    }

    .form-group {
      position: relative;
      margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 12px 40px 12px 40px;
      border: 1px solid #ddd;
      border-radius: 8px;
      font-size: 14px;
      outline: none;
      transition: 0.3s;
/*      max-width: 262px;*/
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--inj-primary-color);
      box-shadow: 0 0 5px rgba(0,0,0,0.1);
    }

    .form-group i {
      position: absolute;
      left: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #999;
    }

    /* Fix textarea icon alignment */
    .form-group textarea + i,
    .form-group i.fa-comment {
      top: 14px;
      transform: none;
    }

    textarea {
      resize: none;
      min-height: 100px;
    }

    .submit-btn {
      width: 100%;
      background: var(--inj-primary-color);
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 16px;
      cursor: pointer;
      transition: 0.3s;
    }

    .submit-btn:hover {
      background: #e09e00;
    }

    .thank-you {
      display: none;
      text-align: center;
      padding: 40px;
    }

    @media(max-width: 768px) {
      .contact-container {
        flex-direction: column;
      }
      .contact-info {
        text-align: center;
      }

      .form-group input, .form-group textarea {
/*    max-width: 165px;*/
}

    }

/* ------  Contact Form ------------ */

.loader {
  border: 5px solid #f3f3f3;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
    border-top: 5px solid var(--inj-primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
  
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
