.elementor-409 .elementor-element.elementor-element-2a7a2666{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-409 .elementor-element.elementor-element-405c118b > .elementor-widget-container{margin:-10px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-409 .elementor-element.elementor-element-b837adc{--display:flex;}.elementor-409 .elementor-element.elementor-element-b837adc.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-409 .elementor-element.elementor-element-6addf4a{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-409 .elementor-element.elementor-element-7b73422{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-409 .elementor-element.elementor-element-7b73422.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-409 .elementor-element.elementor-element-1252f45{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-409 .elementor-element.elementor-element-b837adc{--width:100%;}.elementor-409 .elementor-element.elementor-element-7b73422{--width:98.02%;}}/* Start custom CSS for text-editor, class: .elementor-element-405c118b *//* Career Section */
.career-section {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}
.career-section h1 {
  font-size: 50px;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  display: grid;
}
.career-section h1 span {
  color: #00e5ff;
  font-size: 60px;
}
.career-section p {
  max-width: 850px;
  margin: 0 auto 30px;
  font-size: 24px;
  line-height: 1.6;
  color: #f8f8f8;
}
.cta-buttons {
  margin-top: 20px;
  display: inline-flex;
}
.cta-buttons a {
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}
.cta-buttons a:first-child {
  background: #00e5ff;
  color: #0f172a;
  margin-right: 10px;
}
.cta-buttons a:last-child {
  background: transparent;
  border: 2px solid #00e5ff;
  color: #00e5ff;
}
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.stats div {
  border: 1px solid #00e5ff;
  border-radius: 8px;
  padding: 15px 25px;
  width: 220px;
  background: rgba(255,255,255,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.stats div:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 229, 255, 0.4);
}
.stats h3 {
  color: #00e5ff;
  margin: 0;
  font-size: 20px;
}
.stats p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #fff;
}
/* Trusted Section */
.trusted-section {
  background: #e0fcff;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  text-align: center;
  padding: 60px 20px;
  font-family: Arial, sans-serif;
}
.trusted-section h2 {
  font-size: 45px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #222;
}
.trusted-section h2 span {
  color: #1a9ead;
}
.trusted-section p {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 20px;
  color: #555;
}
.trusted-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.trusted-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  min-width: 250px;
  min-height: 200px;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.trusted-card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(26, 158, 173, 0.4);
}
.trusted-card .icon-box {
  background: #1a9ead;
  border-radius: 7px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.trusted-card:hover .icon-box {
  animation: shake 0.5s ease infinite, rotate 0.5s ease infinite;
}
@keyframes shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-3px); }
  50% { transform: translateX(3px); }
  75% { transform: translateX(-3px); }
  100% { transform: translateX(0); }
}
@keyframes rotate {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}
.trusted-card h3 {
  color: #1a9ead;
  font-size: 40px;
  margin: 10px 0;
}
.trusted-card p {
  margin: 8px 0 0;
  font-size: 17px;
  font-weight: 600;
  color: #444;
}
.trusted-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #555;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-c464711 */.why-choose-section {
  background: #e0fcff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* --- Title --- */
.why-choose-section h2 {
  font-size: 38px;
  font-weight: 700;
  color: #121f38;
  margin-bottom: 15px;
}

/* --- Subtitle --- */
.why-choose-section p.subtext {
  color: #444;
  font-size: 16px;
  max-width: 750px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

/* --- Card Container (3 per row) --- */
.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Individual Card --- */
.why-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 25px;
  width: 100%;
  max-width: 300px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.why-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* --- Icon Box --- */
.why-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #1297A6;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: transform 0.3s ease;
}

.why-card:hover .icon {
  transform: scale(1.2);
}

/* --- Text --- */
.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #121f38;
  margin-bottom: 10px;
}

.why-card p {
  color: #444;
  font-size: 14px;
  margin: 0;
}

@media (max-width: 992px) {
  .why-choose-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-choose-cards {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-21d97d7 */body {
    font-family: "Poppins", sans-serif;
    background: #f9fafc;
    margin: 0;
    padding: 40px 0;
  }

  .about-section {
    max-width: 100%;
    margin: auto;
    background: white;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.1);
  }

  .about-header {
    text-align: center;
    margin-bottom: 50px;
  }

  .about-header h2 {
    font-size: 1.8rem;
    margin: 0;
    color: #1a1a1a;
    font-weight: 600;
  }

  .about-header h2 span {
    color: #1a9ead;
  }

  .about-header p {
    max-width: 720px;
    margin: 15px auto 0;
    color: #555;
    line-height: 1.7;
  }

  .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px;
    align-items: center;
  }

  .about-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .info-card {
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(26,158,173,0.2);
    background: linear-gradient(120deg, rgba(26,158,173,0.2), transparent 70%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    backdrop-filter: blur(6px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, rgba(26,158,173,0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .info-card:hover::before {
    opacity: 1;
  }

  .info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }

  .info-card h3 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
    margin: 0 0 8px;
    color: #1a9ead;
    font-weight: 600;
  }

  .info-card p {
    margin: 0;
    color: #333;
    line-height: 1.6;
    font-size: 0.96rem;
  }

  .about-right {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
	height: 460px;
  }

  .about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .overlay-cards {
	position: absolute;
    top: 80px;
    left: 70px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 40px;
    gap: 15px;
  }

  .overlay-card {
    background: rgb(255 255 255 / 22%);
    border-left: 4px solid #1a9ead;
    border-radius: 12px;
    padding: 20px 25px;
    width: 80%;
    text-align: left;
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
  }

  .overlay-card:hover {
    transform: translateX(-5px) scale(1.02);
  }

  .overlay-card h4 {
    color: #1a9ead;
    margin: 0 0 8px;
    font-size: 1.1rem;
  }

  .overlay-card p {
    color: #ffff;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .about-btn {
    display: block;
    width: fit-content;
    margin: 50px auto 0;
    background: linear-gradient(90deg, #1a9ead, #178293);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 35px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.4s ease, transform 0.3s ease;
  }

  .about-btn:hover {
    background: linear-gradient(90deg, #178293, #1a9ead);
    transform: translateY(-3px);
  }

  @media (max-width: 850px) {
    .about-content {
      grid-template-columns: 1fr;
    }
    .overlay-card {
      width: 85%;
    }
  }/* End custom CSS */