/* ── CLIENTS SECTION ── */
.clients-outer {
  background-color: #ffffff;
  padding: 60px 0;
}

/* ── UL RESET ── */
.clients-list {
  list-style: none;
  padding: 0;
  margin: 0;
  gap : 10px;

}

/* ── CLIENT ITEM ── */
.client-item {
 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  min-height: 150px;
  overflow: hidden;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
	
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}

/* ── IMAGE ── */
.client-item img {
  max-width: 180px;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* ── HOVER ── */
.client-item:hover {
  background-color: #ffff;
}

.client-item:hover img {
  transform: scale(1.08);
  opacity: 0.8;
}

.client-item {
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px;
  min-height: 150px;
  overflow: hidden;
  background-color: #ffffff;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.client-item:hover {
  background-color: #fff;
  transform: translateY(-6px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.10);
}






/* ── FAQ SECTION ── */
:root {
  --border-color: #e5e5e5;
  --radius: 16px;
  --padding: 24px;
  --transition: 0.22s ease-out;
}

.faq-section {
  padding: 60px 16px 60px;

    margin-bottom: 60px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 25px;
}

.faq-title {
  position: sticky;
  top: 23px;
  height: max-content;
  margin: 0 0 32px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.contact-faq-item {
  background: #222222;
  border-radius: var(--radius);
  border: 1px solid #575757;
  transition: border-color var(--transition), background-color var(--transition);
  padding-bottom: 20px;
}

.contact-faq-item.is-open {
  border-color: var(--border-color);
}


.faq-item {
  background: #f6f6f6;
  border-radius: var(--radius);
  border: 1px solid #575757;
  transition: border-color var(--transition), background-color var(--transition);
  padding-bottom: 20px;
}

.faq-item.is-open {
  border-color: var(--border-color);
}

.faq-header {
  width: 100%;
  padding: var(--padding);
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 23px;
  font-weight: 500;
  color: #000;
  text-align: left;
}

.faq-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.faq-question { flex: 1; }


.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

.faq-icon::before { transform: translate(-50%, -50%); }
.faq-icon::after  { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.is-open .faq-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.faq-item.is-open .faq-icon::after  { transform: translate(-50%, -50%) rotate(-45deg); }


.contact-faq-item.is-open .faq-icon::before { transform: translate(-50%, -50%) rotate(45deg); }
.contact-faq-item.is-open .faq-icon::after  { transform: translate(-50%, -50%) rotate(-45deg); }

.faq-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
  will-change: max-height;
}

.faq-item.is-open .faq-body {
  max-height: 500px;
  padding-bottom: var(--padding);
}

.contact-faq-item.is-open .faq-body {
  max-height: 500px;
  padding-bottom: var(--padding);
}

.faq-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  max-width: 720px;
}

button:focus, button:hover {
  background-color: transparent;
  color: #000;
  text-decoration: none;
}

@media (max-width: 640px) {
  .faq-container { flex-direction: column; }
  .faq-title { position: static; font-size: 26px; }
  .faq-header { padding: 20px; font-size: 18px; }
  .faq-body { padding: 0 20px; }
  .faq-item.is-open .faq-body { padding-bottom: 20px; }
}

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

.faq-title {
  position: static;
  margin-bottom: 32px;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.faq-item {
  background: #f6f6f6;
  border-radius: var(--radius);
  border: 1px solid #575757;
  transition: border-color var(--transition), background-color var(--transition);
  padding-bottom: 20px;
  width: 100%;
}




/* ===== SECTION ===== */
    .contact-section {
      background-color: #ffff;
      padding: 80px 0;
    }

    /* ===== LEFT INFO BOX ===== */
    .contact-info-box {
      background-color: #f6f6f6;
      border-radius: 20px;
      padding: 44px 36px;
      height: 100%;
      display: flex;
      flex-direction: column;
      gap: 36px;
    }

    .contact-tagline {
      font-size: 20px;
      font-weight: 600;
      color: #111111;
      line-height: 1.45;
      margin: 0;
    }

    /* ===== CONTACT DETAILS ===== */
    .contact-details {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .contact-detail-item {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 14.5px;
      color: #222222;
    }

    .contact-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1.5px solid #c5c5c5;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon i {
      font-size: 16px;
      color: #111111;
    }

    .contact-icon img {
      width: 18px;
      height: 18px;
      object-fit: contain;
    }

    /* ===== SOCIAL ICONS ===== */
    .contact-social {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: auto;
    }

    .contact-social-icon {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 1.5px solid #c5c5c5;
      background-color: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111111;
      font-size: 15px;
      text-decoration: none;
      transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
      cursor: pointer;
    }

    .contact-social-icon:hover {
      background-color: #111111;
      color: #ffffff;
      border-color: #111111;
    }

    /* ===== RIGHT FORM ===== */
    .contact-form-wrap {
      padding-left: 24px;
    }

    .scacontact-form {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.scacontact-form .name {
    display: flex;
    gap: 15px;
}

    
input[type=date], input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    border-color: #000;
    border-radius: 0px;
    padding: 0.5rem 0rem 2em 0em;
    transition: all .3s;
    width: 100%;
    border-width: 0px 0px 1px 0px;
    border-style: solid;
    font-size: 14px;
    color: #000 !important;
}

input[type=date]:focus, input[type=email]:focus, input[type=number]:focus, input[type=password]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=url]:focus, select:focus, textarea:focus {
    border-color: #000 !important;
    outline: none;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: auto;
    background-color: #000;
    border-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 18px 32px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    width: auto;
    background-color: #009ada;
    
    color: #fff;
    border-radius: 50px;
    padding: 18px 32px;
}
    
    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .contact-form-wrap {
        padding-left: 0;
        margin-top: 36px;
      }
    }

    @media (max-width: 768px) {
      .contact-section {
        padding: 50px 0;
      }

      
      .contact-info-box {
        padding: 32px 24px;
      }
    }

.contact-social-icon{
	padding:12px;
	    background:#fff;
}




/* careers page */



.life-section {
      background-color: #ffffff;
      padding: 70px 0;
    }

    /* ===== LEFT CONTENT ===== */
    .life-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-right: 40px;
      height: 100%;
    }

    .life-title {
      font-size: 42px;
      font-weight: 600;
      color: #111111;
      line-height: 1.2;
      margin-bottom: 28px;
      letter-spacing: -0.5px;
    }

    .life-text {
      font-size: 18px;
      color: #000;
      line-height: 1.75;
      margin-bottom: 24px;
    }

    .life-text:last-child {
      margin-bottom: 0;
    }

    /* ===== RIGHT IMAGE ===== */
    .life-image-wrap {
      border-radius: 20px;
      overflow: hidden;
      height: 100%;
      min-height: 400px;
    }

    .life-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .life-content {
        padding-right: 0;
        margin-bottom: 36px;
      }

      .life-title {
        font-size: 32px;
      }

      .life-text {
        font-size: 16px;
      }

      .life-image-wrap {
        min-height: 300px;
      }
    }

    @media (max-width: 767px) {
      .life-section {
        padding: 50px 0px 0px;
      }

      .life-title {
        font-size: 28px;
      }

      .culture-section {
    background-color: #e0f4fb;
    padding: 45px 0px !important;
}
.culture-card {
    padding: 20px !important;
}

.job-section {
    background-color: #ffffff;
    padding: 45px 0 30px !important;
}
    }


/* why we chose section */



  .why-join-section {
    background-color: #ffffff;
  margin-bottom:60px;
  }

  .why-join-title {
    font-size: 40px;
    font-weight: 600;
    color: #111111;
    text-align: center;
    margin-bottom: 44px;
    letter-spacing: -0.3px;
    
  }

  .why-join-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .why-join-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .why-join-item {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1.5px solid #cccccc;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    color: #111111;
   
    white-space: nowrap;
    background-color: #ffffff;
  }

  .why-check {
    width: 22px;
    height: 22px;
    background-color: #4caf50;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .why-check svg {
    width: 13px;
    height: 13px;
    fill: #ffffff;
  }

  @media (max-width: 768px) {
    .why-join-item {
      white-space: normal;
      border-radius: 14px;
    }

    .why-join-title {
      font-size: 28px;
    }
  }


/* grid section  carieer */

/* ===== CULTURE SECTION ===== */
.culture-section {
  background-color: #e0f4fb;
  padding: 60px 20px;
  
}

.culture-section .row {
  gap: 22px 0px ;

}

.culture-section .col-md-6 {
  padding: 0 12px;
}

.culture-card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 44px 48px 52px 48px;
  height: 100%;
  box-shadow: 6px 0px 20px rgba(0, 0, 0, 0.06),
             -6px 0px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.culture-card:hover {
  transform: translateY(-8px);
  box-shadow: 6px 0px 30px rgba(0, 0, 0, 0.12),
             -6px 0px 30px rgba(0, 0, 0, 0.12);
}

.culture-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.culture-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.culture-card-title {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.4;
}

.culture-card-text {
  font-size: 16px;
  color: #000;
  line-height: 1.78;
  margin: 0;
  text-align: center;
}

/* border dividers நீக்கினேன் — gap போதும் */
.col-left {
  border-right: none;
}

.row-top {
  border-bottom: none;
}

@media (max-width: 767px) {
  .culture-card {
    padding: 36px 28px;
  }
}



/* carrier job opoening secton start */



.job-section {
    background-color: #ffffff;
    padding: 60px 0;
    
  }

  .job-title {
    font-size: 42px;
    font-weight: 600;
    color: #111111;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: -0.3px;
  }

  /* ===== FILTER DROPDOWNS ===== */
  .job-filters {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
  }

  .job-filter-select {
    border: 1.5px solid #cccccc;
    border-radius: 8px;
    padding: 12px 40px 12px 18px;
    font-size: 15px;
    color: #444444;
    background-color: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
    outline: none;
    min-width: 200px;
    font-family: inherit;
  }

  .job-filter-select:focus {
    border-color: #0e86a8;
  }

 

/* ===== JOB CARDS ===== */
.job-card {
  border: 1.5px solid #d0d0d0;
  border-radius: 18px;
  padding: 32px 28px 28px 28px;
  height: 100%;
  background-color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0px 0px #0e86a8;
  border-color: #0e86a8;
}

/* .job-card.active {
  transform: translateY(-6px);
  box-shadow: 6px 6px 0px 0px #0e86a8;
  border-color: #0e86a8;
} */

.job-card-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
	
  margin-bottom: 24px;
  line-height: 1.3;
}

.job-card:hover .job-card-title,
.job-card.active .job-card-title {
  color: #0e86a8;

}

.job-card-meta {
  font-size: 14.5px;
  color: #555555;
  line-height: 1.9;
  margin-bottom: 20px;
}

.job-card-link {
  font-size: 14.5px;
  font-weight: 500;
  color: #0e86a8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.job-card-link:hover {
  color: #0a6a88;
  gap: 10px;
}

@media (max-width: 767px) {
  .job-title {
    font-size: 30px;
  }

  .job-filter-select {
    min-width: 100%;
  }

  .job-card {
    margin-bottom: 20px;
  }
}

.job-filter-select {
  width: 0% !important;
}

.job-card:hover .job-card-title, .job-card.active .job-card-title{
	color:#000
}


.culture-card{
	padding:35px;
}


/* course */



/* ===== JOB SINGLE PAGE ===== */
.awsm-job-single-wrap {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px 0;
  

}

/* ===== LEFT CONTENT — col-6 ===== */
.awsm-job-content {
  flex: 0 0 50%;
  max-width: 50%;
  min-width: 0;
}

/* ===== RIGHT FORM — col-6 STICKY ===== */
.awsm-job-form {
  flex: 0 0 calc(50% - 40px);
  max-width: calc(50% - 40px);
  position: sticky;
  top: 100px;
  align-self: flex-start;
}

.awsm-job-form-inner {
  background-color: #e8f6f9;
  border-radius: 16px;
  padding: 32px 28px;
  width: 97%;
}

.awsm-job-form-inner h2 {
  font-size: 36px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 28px;
  line-height: 1.3;

}

/* ===== LEFT CONTENT STYLES ===== */
.awsm-job-entry-content h3 {
  font-size: 30px;
  font-weight: 700;
  color: #111111;
  margin-top: 28px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.awsm-job-entry-content h4 {
  font-size: 24px;
  font-weight: 700;
  color: #111111;
  margin-top: 10px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.awsm-job-entry-content p {
  font-size: 18px;
  color: #444444;
  line-height: 1.75;
  margin-bottom: 14px;
}

.awsm-job-entry-content ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.awsm-job-entry-content ul li {
  font-size: 18px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 4px;
  list-style: disc;
}

.awsm-job-entry-content strong {
  font-weight: 700;
  color: #111111;
}

/* ===== SPECS ===== */
.awsm-job-specifications-container {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}

.awsm-job-specification-item {
  font-size: 18px;
  color: #444444;
  margin-bottom: 6px;
}

.awsm-job-specification-label strong {
  color: #111111;
}

/* ===== FORM FIELDS ===== */
.awsm-job-form-group {
  margin-bottom: 20px;
}

.awsm-job-form-group label {
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #222222;
  
}

.awsm-job-form-error {
  color: #e53935;
  margin-left: 2px;
}

.awsm-job-form-control {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid #aaaaaa;
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  color: #111111;
  outline: none;
  font-family: inherit;
  border-radius: 0;
  transition: border-color 0.2s ease;
}

.awsm-job-form-control:focus {
  border-bottom-color: #0e86a8;
}

textarea.awsm-job-form-control {
  resize: vertical;
  min-height: 80px;
}

.awsm-form-file-control {
  padding: 0;
  border-bottom: none;
  font-size: 13px;
}

.awsm-job-form-group small {
  font-size: 12px;
  color: #888888;
  display: block;
  margin-top: 4px;
}

.awsm-job-inline-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.awsm-job-inline-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  accent-color: #0e86a8;
}

.awsm-job-inline-group label {
  font-size: 13px;
  color: #444444;
  margin-bottom: 0;
  line-height: 1.5;
}

/* ===== SUBMIT BUTTON ===== */
.awsm-application-submit-btn {
  background-color: #111111;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  padding: 11px 48px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 8px;
}

.awsm-application-submit-btn:hover {
  background-color: #333333;
}

.awsm-application-submit-btn:active {
  transform: scale(0.98);
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding: 30px 0 10px 0;
}

.page-header .entry-title {
  font-size: 28px;
  font-weight: 700;
  color: #111111;
  margin-top: 90px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .awsm-job-single-wrap {
    flex-direction: column;
  }

  .awsm-job-content {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .awsm-job-form {
    flex: 0 0 100%;
    max-width: 100%;
    position: static;
  }
}


input#awsm-applicant-email
 {
    border: none;
    border-bottom: 1px solid;
    border-color: #7d7d7d;
    margin-bottom: 5px;
}
input#awsm-applicant-name {
    border: none;
    border-bottom: 1px solid;
    border-color: #7d7d7d;
    margin-bottom: 5px;
}
input#awsm-applicant-phone {
    border: none;
    border-bottom: 1px solid;
    border-color: #7d7d7d;
    margin-bottom: 5px;
}



textarea#awsm-cover-letter {
    height: 70px;
}

.awsm-job-single-wrap{
  gap:58px;
}

.awsm-job-single-wrap a{
  text-decoration: none;
  color: black;
}
ul.contact-list li{
  list-style: none;
  padding: 0;
  margin: 0;
}


/* footer ai */


.ask-ai-widget {
  text-align: right;
  margin-bottom: 20px;
}

.ask-ai-label {
  color: #ffff;
  font-size: 15px;
  margin-bottom: 12px;
  font-weight: 500;
}

.ask-ai-icons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.ask-ai-icons .ai-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ask-ai-icons .ai-icon:hover {
  transform: translateY(-2px);
  opacity: 0.85;
}

.ask-ai-icons .ai-icon svg {
  width: 20px;
  height: 20px;
}

.ask-ai-icons .ai-icon[data-ai="grok"] {
  background-color: transparent;
  border-radius: 10px;
}

.ask-ai-icons .ai-icon[data-ai="grok"] svg {
  width: 40px;
  height: 40px;
}
.ask-ai-icons .ai-icon[data-ai="perplexity"] {
  background-color: transparent;
  border-radius: 10px;
}

.ask-ai-icons .ai-icon[data-ai="perplexity"] svg {
  width: 40px;
  height: 40px;
}

@media (max-width: 600px) {
  .ask-ai-widget {
    text-align: left;
            padding: 20px 0px;
                 margin-bottom: 0px;
  }
  .ask-ai-icons {
    justify-content: left;
  }
  .hero-badge span.dot {
    width: 12px;
  }
}