/* ==========================================================================
   Inner Pages Stylesheet
   ========================================================================== */

/* About — Why Choose Us cards
   -------------------------------------------------------------------------- */
.aboutbox1 {
   padding: 20px 0 50px;
   background-color: #000;
}

.aboutbox1_grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
}

.aboutbox1_card {
   display: flex;
   flex-direction: column;
   flex: 1 1 auto;
   min-width: 0;
   position: relative;
   height: 100%;
   background-color: rgba(27, 27, 27, .4);
   -webkit-backdrop-filter: blur(3px);
   backdrop-filter: blur(3px);
   box-shadow: 0 0 1px 1px rgba(27, 27, 27, .4);
   border-radius: 20px;
   border: 1px solid hsla(0, 0%, 100%, .2);
   padding: 20px 20px 24px;
   transition: .4s ease;
   align-items: flex-start;
   gap: 20px;
}

/* .aboutbox1_card::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 4px;
   background: linear-gradient(180deg, #0a66c2 0%, #00aeef 100%);
   transform: scaleY(0);
   transform-origin: top;
   transition: transform 0.4s ease;
} */

.aboutbox1_card:hover {
   transform: translateY(-6px);
   /* border-color: transparent; */
   /* box-shadow: 0 24px 50px rgba(10, 102, 194, 0.14); */
}

/* .aboutbox1_card:hover::before {
   transform: scaleY(1);
} */

.aboutbox1_card .sec7_img {
   flex: 0 0 auto;
}

.aboutbox1_card .abx_icon {
   /* position: relative;
   width: 70px;
   height: 70px;
   border-radius: 18px;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 30px;
   box-shadow: 0 14px 28px rgba(10, 102, 194, 0.28);
   transition: transform 0.4s ease, box-shadow 0.4s ease; */
}

/* .aboutbox1_card .abx_icon::after {
   content: "";
   position: absolute;
   inset: -8px;
   border-radius: 22px;
   border: 1px dashed rgba(126, 126, 126, 0.8);
   opacity: 0;
   transition: opacity 0.4s ease, transform 0.4s ease;
   transform: scale(0.85);
}

.aboutbox1_card:hover .abx_icon {
   transform: rotate(-4deg) scale(1.05);
   box-shadow: 0 18px 36px rgba(10, 102, 194, 0.35);
}

.aboutbox1_card:hover .abx_icon::after {
   opacity: 1;
   transform: scale(1);
} */

.aboutbox1_card .sec7_info {
   flex: 1 1 auto;
   text-align: left;
   margin-top: 0;
}

.aboutbox1_card .sec7_info h3 {
   font-size: 20px;
   font-weight: 500;
   margin: 0 0 8px;
   color: #fff;
   line-height: 1.3;
}

.aboutbox1_card .sec7_info p {
   font-size: 15px;
   line-height: 1.6;
   color: hsla(0, 0%, 100%, .6);
   margin: 0;
}

@media (max-width: 991px) {
   .aboutbox1_grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .aboutbox1 {
      padding: 50px 0;
   }

   .aboutbox1_grid {
      grid-template-columns: 1fr;
      gap: 16px;
   }

   .aboutbox1_card {
      padding: 26px 22px;
      gap: 18px;
   }

   .aboutbox1_card .abx_icon {
      width: 58px;
      height: 58px;
      font-size: 24px;
      border-radius: 14px;
   }

   .aboutbox1_card .sec7_info h3 {
      font-size: 18px;
   }
}

/* About — Expanding panels (aboutbox2)
   -------------------------------------------------------------------------- */
.aboutbox2 {
   padding: 50px 0 40px;
   /* background-color: #fff; */
}

.ab2_panels {
   display: flex;
   gap: 18px;
   align-items: stretch;
   min-height: 460px;
}

.ab2_panel {
   position: relative;
   flex: 1 1 0;
   min-width: 0;
   border-radius: 22px;
   overflow: hidden;
   background-color: #0b1b34;
   color: #fff;
   cursor: pointer;
   transition: flex-grow 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
   isolation: isolate;
}

.ab2_panel_bg {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   z-index: -2;
   transition: transform 0.8s ease, filter 0.6s ease;
   transform: scale(1.05);
   filter: brightness(0.5);
}

.ab2_panel::after {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(11, 27, 52, 0.2) 0%, rgba(11, 27, 52, 0.85) 70%, rgba(11, 27, 52, 0.95) 100%);
   z-index: -1;
   transition: background 0.5s ease;
}

.ab2_panel_content {
   position: relative;
   height: 100%;
   padding: 32px;
   display: flex;
   flex-direction: column;
   justify-content: flex-end;
}

.ab2_panel_icon {
   position: absolute;
   top: 28px;
   left: 28px;
   width: 46px;
   height: 46px;
   border-radius: 12px;
   background: rgba(255, 255, 255, 0.12);
   border: 1px solid rgba(255, 255, 255, 0.22);
   backdrop-filter: blur(6px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   color: #fff;
}

.ab2_panel h3 {
   font-size: 30px;
   font-weight: 600;
   margin: 0;
   color: #fff;
   line-height: 1.2;
   transition: margin 0.4s ease;
}

.ab2_panel_desc {
   font-size: 15px;
   line-height: 1.7;
   color: rgba(255, 255, 255, 0.85);
   margin: 16px 0 0;
   max-width: 560px;
   opacity: 0;
   max-height: 0;
   overflow: hidden;
   transform: translateY(8px);
   transition: opacity 0.45s ease, transform 0.5s ease, max-height 0.6s ease, margin 0.4s ease;
}

/* Active panel state (toggled via JS on mouseenter) */
.ab2_panel.is-active {
   flex-grow: 3;
}

.ab2_panel.is-active .ab2_panel_bg {
   transform: scale(1);
   filter: brightness(0.6);
}

.ab2_panel.is-active .ab2_panel_desc {
   opacity: 1;
   max-height: 400px;
   margin-top: 16px;
   transform: translateY(0);
}

@media (max-width: 991px) {
   .ab2_panels {
      flex-direction: column;
      min-height: 0;
      gap: 14px;
   }

   .ab2_panel {
      min-height: 220px;
      flex-grow: 1 !important;
   }

   .ab2_panel_desc {
      opacity: 1 !important;
      max-height: 400px !important;
      transform: none !important;
      margin-top: 16px !important;
   }

   .ab2_panel_bg {
      transform: scale(1) !important;
      filter: brightness(0.55) !important;
   }

   .ab2_panel h3 {
      font-size: 24px;
   }
}

@media (max-width: 600px) {
   .aboutbox2 {
      padding: 0 0 50px;
   }

   .ab2_panel_content {
      padding: 24px;
   }

   .ab2_panel_icon {
      top: 20px;
      left: 20px;
      width: 40px;
      height: 40px;
      font-size: 16px;
   }

   .ab2_panel h3 {
      font-size: 22px;
   }

   .ab2_panel_desc {
      font-size: 14px;
   }
}

/* About — Metrics banner (aboutbox3)
   -------------------------------------------------------------------------- */
.aboutbox3 {
   position: relative;
   padding: 90px 0;
   overflow: hidden;
   background: linear-gradient(135deg, #0b1b34 0%, #0a66c2 100%);
   color: #fff;
   isolation: isolate;
}

.ab3_bg {
   position: absolute;
   inset: 0;
   z-index: -1;
   overflow: hidden;
}

.ab3_blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   opacity: 0.45;
}

.ab3_blob--1 {
   top: -120px;
   left: -120px;
   width: 380px;
   height: 380px;
   background: #00aeef;
}

.ab3_blob--2 {
   bottom: -140px;
   right: -100px;
   width: 420px;
   height: 420px;
   background: #2a6fd4;
   opacity: 0.35;
}

.aboutbox3::after {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
      linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
   background-size: 60px 60px;
   z-index: -1;
   mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
   -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
}

.ab3_row {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 0;
}

.ab3_item {
   padding: 10px 40px;
   position: relative;
   text-align: left;
}

.ab3_item+.ab3_item {
   border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.ab3_num {
   display: block;
   font-size: 72px;
   font-weight: 700;
   line-height: 1;
   letter-spacing: -1px;
   background: linear-gradient(180deg, #ffffff 0%, #9cd5ff 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 14px;
}

.ab3_num sup {
   font-size: 36px;
   top: -0.55em;
   margin-left: 4px;
}

.ab3_caption {
   display: block;
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   color: #9cd5ff;
   margin-bottom: 20px;
}

.aboutbox3 h3 {
   font-size: 22px;
   font-weight: 600;
   color: #fff;
   margin: 0 0 10px;
   line-height: 1.3;
}

.aboutbox3 .ab3_item p {
   font-size: 15px;
   line-height: 1.65;
   color: rgba(255, 255, 255, 0.72);
   margin: 0;
}

@media (max-width: 991px) {
   .aboutbox3 {
      padding: 60px 0;
   }

   .ab3_row {
      grid-template-columns: 1fr;
   }

   .ab3_item {
      padding: 28px 0;
   }

   .ab3_item+.ab3_item {
      border-left: none;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
   }

   .ab3_num {
      font-size: 56px;
   }
}

@media (max-width: 600px) {
   .ab3_num {
      font-size: 48px;
   }

   .ab3_num sup {
      font-size: 24px;
   }
}


/* About — Workforce solutions split layout (aboutbox5)
   -------------------------------------------------------------------------- */
.aboutbox5 {
   padding: 20px 0 80px 0;
}

.aboutbox5_split {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 70px;
   align-items: center;
}

.aboutbox5_text {
   max-width: 560px;
}

.ab5_tag {
   font-size: 19px;
   font-weight: 400;
   line-height: 1.6;
   margin-top: 0;
   font-family: "Open Sans", sans-serif;
   margin-bottom: 10px;
   color: #000;
}

.aboutbox5_text h2 {
   font-size: 44px;
   font-weight: 700;
   line-height: 1.15;
   color: #0b1b34;
   margin: 20px 0 32px;
}

.aboutbox5_text h2 span {
   background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.aboutbox5_checklist {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.aboutbox5_checklist li {
   display: flex;
   align-items: flex-start;
   gap: 14px;
}

.ab5_check {
   flex: 0 0 auto;
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background-color: #0b1b34;
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 12px;
   margin-top: 3px;
}

.ab5_item {
   font-size: 16px;
   line-height: 1.55;
   color: #1f2937;
}

.ab5_item strong {
   color: #0b1b34;
   font-weight: 700;
}

/* Right-side image */
.ab5_media_main {
   margin: 0;
   border-radius: 20px;
   overflow: hidden;
   position: relative;
   min-height: 600px;
   box-shadow: 0 24px 50px rgba(11, 27, 52, 0.18);
}

.ab5_media_main img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

@media (max-width: 991px) {
   .aboutbox5 {
      padding: 60px 0;
   }

   .aboutbox5_split {
      grid-template-columns: 1fr;
      gap: 50px;
   }

   .aboutbox5_text {
      max-width: none;
   }

   .aboutbox5_text h2 {
      font-size: 32px;
   }
}

@media (max-width: 600px) {
   .aboutbox5 {
      padding: 50px 0;
   }

   .aboutbox5_text h2 {
      font-size: 26px;
      margin-bottom: 24px;
   }

   .ab5_item {
      font-size: 15px;
   }

   .ab5_media_main {
      min-height: 260px;
   }
}

/* Leadership Team page
   -------------------------------------------------------------------------- */
.leadership_intro {
   padding: 0 0 30px;
   background-color: #000;
}

.ld_intro_header {
   max-width: 880px;
   margin: 0 auto 50px;
   text-align: center;
}

.ld_tag {
   font-size: 19px;
   font-weight: 400;
   line-height: 1.6;
   margin-top: 0;
   font-family: "Open Sans", sans-serif;
   margin-bottom: 10px;
   color: #00aeef;
}

.ld_intro_header h2 {
   font-size: 44px;
   font-weight: 600;
   line-height: 1.2;
   color: #fff;
   margin: 20px 0 18px;
}

.ld_intro_header h2 span {
   /* background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent; */
}

.ld_intro_header p {
   font-size: 17px;
   line-height: 1.7;
   color: hsla(0, 0%, 100%, .6);
   margin: 0;
}

.ld_intro_stats {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
   max-width: 880px;
   margin: 0 auto;
   padding: 32px 0;
   border-top: 1px solid #e6ecf3;
   border-bottom: 1px solid #e6ecf3;
}

.ld_stat {
   text-align: center;
}

.ld_stat_num {
   display: block;
   font-size: 48px;
   font-weight: 700;
   line-height: 1;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 8px;
}

.ld_stat_num sup {
   font-size: 24px;
   top: -0.55em;
   margin-left: 2px;
}

.ld_stat_label {
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   color: #5b6677;
}

.leadership_team {
   padding: 50px 0 90px;
}

.leadership_list {
   display: flex;
   flex-direction: column;
   /* gap: 90px; */
}

.ld_member {
   display: grid;
   grid-template-columns: 0.9fr 1.1fr;
   gap: 70px;
   align-items: center;
}

.ld_member:nth-child(even) {
   grid-template-columns: 1.1fr 0.9fr;
}

.ld_member:nth-child(even) .ld_member_img {
   order: 2;
}

.ld_member_img {
   position: relative;
   border-radius: 24px;
   overflow: hidden;
   aspect-ratio: 5 / 5;
   box-shadow: 0 30px 60px rgba(11, 27, 52, 0.18);
}

.ld_member_img::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(11, 27, 52, 0) 60%, rgba(11, 27, 52, 0.45) 100%);
   z-index: 1;
   pointer-events: none;
}

.ld_member_img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center top;
   display: block;
   transition: transform 0.8s ease;
}

.ld_member:hover .ld_member_img img {
   transform: scale(1.05);
}

.ld_member_num {
   position: absolute;
   top: 22px;
   left: 22px;
   z-index: 2;
   padding: 8px 16px;
   border-radius: 100px;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1px;
   box-shadow: 0 10px 20px rgba(10, 102, 194, 0.3);
}

.ld_role {
   display: inline-block;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.4px;
   text-transform: uppercase;
   color: #0a66c2;
   padding: 6px 14px;
   border-radius: 100px;
   background-color: rgba(10, 102, 194, 0.08);
   margin-bottom: 16px;
}

.ld_member_info h3 {
   font-size: 40px;
   font-weight: 700;
   color: #0b1b34;
   line-height: 1.1;
   margin: 0 0 20px;
   letter-spacing: -0.5px;
}

.ld_member_info>p {
   font-size: 16px;
   line-height: 1.75;
   color: #5b6677;
   margin: 0 0 24px;
}

.ld_member_info blockquote {
   position: relative;
   margin: 0 0 28px;
   padding: 18px 22px 18px 28px;
   border-left: 4px solid #0a66c2;
   border-radius: 0 12px 12px 0;
   background-color: rgba(10, 102, 194, 0.05);
   font-size: 17px;
   font-style: italic;
   line-height: 1.55;
   color: #0b1b34;
}

.ld_member_info blockquote::before {
   content: "\201C";
   position: absolute;
   top: -10px;
   left: 14px;
   font-size: 60px;
   line-height: 1;
   font-family: Georgia, serif;
   color: #0a66c2;
   opacity: 0.35;
}

.ld_member_actions {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   flex-wrap: wrap;
}

.ld_tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
}

.ld_tags span {
   font-size: 12px;
   font-weight: 600;
   letter-spacing: 0.5px;
   text-transform: uppercase;
   color: #0b1b34;
   padding: 6px 12px;
   border: 1px solid #e6ecf3;
   border-radius: 100px;
   background-color: #fff;
}

.ld_member_actions .ld_social {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   text-decoration: none;
   box-shadow: 0 10px 22px rgba(10, 102, 194, 0.32);
   transition: transform 0.35s ease, background 0.35s ease;
}

.ld_member_actions .ld_social:hover {
   transform: translateY(-3px);
   background: #0b1b34;
}

@media (max-width: 991px) {
   .leadership_intro {
      padding: 60px 0 20px;
   }

   .ld_intro_header h2 {
      font-size: 32px;
   }

   .ld_intro_stats {
      gap: 16px;
   }

   .ld_stat_num {
      font-size: 36px;
   }

   .leadership_list {
      gap: 60px;
   }

   .ld_member,
   .ld_member:nth-child(even) {
      grid-template-columns: 1fr;
      gap: 30px;
   }

   .ld_member:nth-child(even) .ld_member_img {
      order: 0;
   }

   .ld_member_img {
      aspect-ratio: 16 / 10;
      max-height: 420px;
   }

   .ld_member_info h3 {
      font-size: 30px;
   }
}

@media (max-width: 600px) {
   .leadership_intro {
      padding: 50px 0 10px;
   }

   .ld_intro_header h2 {
      font-size: 26px;
   }

   .ld_intro_stats {
      grid-template-columns: repeat(3, 1fr);
      padding: 22px 0;
   }

   .ld_stat_num {
      font-size: 28px;
   }

   .ld_stat_label {
      font-size: 11px;
   }

   .leadership_team {
      padding: 40px 0 60px;
   }

   .leadership_list {
      gap: 50px;
   }

   .ld_member_info h3 {
      font-size: 24px;
   }

   .ld_member_info blockquote {
      font-size: 15px;
   }

   .ld_tags span {
      font-size: 11px;
   }
}

/* What makes our team the best (teambest)
   -------------------------------------------------------------------------- */
.teambest {
   padding: 50px 0 0;
   position: relative;
   overflow: hidden;
}

.teambest::before {
   content: "";
   position: absolute;
   top: 80px;
   left: -120px;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(10, 102, 194, 0.08), transparent 70%);
   z-index: -1;
}

.teambest::after {
   content: "";
   position: absolute;
   bottom: 60px;
   right: -120px;
   width: 360px;
   height: 360px;
   border-radius: 50%;
   background: radial-gradient(circle, rgba(0, 174, 239, 0.07), transparent 70%);
   z-index: -1;
}

.tb_header {
   text-align: center;
   max-width: 720px;
   margin: 0 auto 50px;
}

.tb_tag {
   font-size: 19px;
   font-weight: 400;
   line-height: 1.6;
   margin-top: 0;
   font-family: "Open Sans", sans-serif;
   margin-bottom: 10px;
   color: #000;
}

.tb_header h2 {
   font-size: 40px;
   font-weight: 600;
   line-height: 1.2;
   color: #0b1b34;
   margin: 20px 0 0;
}

.tb_header h2 span {
   /* background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent; */
}

.tb_grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 24px;
}

.tb_card {
   position: relative;
   padding: 40px 28px 32px;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 20px;
   text-align: center;
   overflow: hidden;
   transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.tb_card:hover {
   transform: translateY(-8px);
   border-color: transparent;
   box-shadow: 0 24px 50px rgba(10, 102, 194, 0.14);
}

.tb_icon {
   position: relative;
   width: 84px;
   height: 84px;
   margin: 0 auto 22px;
   border-radius: 24px;
   background: #e9f2ff;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #fff;
   font-size: 34px;
   /* box-shadow: 0 14px 28px rgba(10, 102, 194, 0.28); */
   transition: transform 0.45s ease, border-radius 0.45s ease;
}

.tb_icon img {
   height: 36px;
}

.tb_icon::before {
   content: "";
   position: absolute;
   inset: -10px;
   border-radius: 30px;
   border: 1px dashed rgba(10, 102, 194, 0.3);
   opacity: 0;
   transform: scale(0.85);
   transition: opacity 0.45s ease, transform 0.45s ease;
}

.tb_card:hover .tb_icon {
   border-radius: 50%;
   transform: rotate(-6deg);
}

.tb_card:hover .tb_icon::before {
   opacity: 1;
   transform: scale(1);
   border-radius: 50%;
}

.tb_card h3 {
   font-size: 20px;
   font-weight: 700;
   color: #0b1b34;
   line-height: 1.3;
   margin: 0 0 14px;
}

.tb_accent {
   display: block;
   width: 40px;
   height: 3px;
   margin: 0 auto 16px;
   background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   border-radius: 100px;
   transition: width 0.45s ease;
}

.tb_card:hover .tb_accent {
   width: 70px;
}

.tb_card p {
   font-size: 15px;
   line-height: 1.65;
   color: #5b6677;
   margin: 0;
}

@media (max-width: 991px) {
   .teambest {
      padding: 40px 0 70px;
   }

   .tb_header h2 {
      font-size: 30px;
   }

   .tb_grid {
      grid-template-columns: repeat(2, 1fr);
   }
}

@media (max-width: 600px) {
   .teambest {
      padding: 30px 0 50px;
   }

   .tb_header {
      margin-bottom: 32px;
   }

   .tb_header h2 {
      font-size: 24px;
   }

   .tb_grid {
      grid-template-columns: 1fr;
      gap: 18px;
   }

   .tb_card {
      padding: 32px 24px 28px;
   }

   .tb_icon {
      width: 72px;
      height: 72px;
      font-size: 28px;
      border-radius: 20px;
   }
}

/* Services strip — attached tabs with icons
   -------------------------------------------------------------------------- */
.srv_strip {
   background: #000;
   position: sticky;
   top: 90px;
   z-index: 100;
   /* box-shadow: 0 10px 24px rgba(10, 102, 194, 0.18); */
}

@media (max-width: 991px) {
   .srv_strip {
      top: 70px;
   }
}

@media (max-width: 575px) {
   .srv_strip {
      top: 60px;
   }
}

.srv_strip .container {
   padding-left: 0;
   padding-right: 0;
}

.srv_tabs {
   display: flex;
   align-items: stretch;
   width: 100%;
   /* border-radius: 14px; */
   overflow: hidden;
}

.srv_tab {
   flex: 1 1 0;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 12px;
   padding: 20px 18px;
   color: rgba(255, 255, 255, 0.82);
   font-size: 16px;
   font-weight: 600;
   line-height: 1.2;
   text-align: center;
   text-decoration: none;
   border-right: 1px solid rgba(255, 255, 255, 0.18);
   transition: background 0.3s ease, color 0.3s ease;
   white-space: nowrap;
}

.srv_tab:last-child {
   border-right: none;
}

.srv_tab .srv_tab_icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 34px;
   height: 34px;
   border-radius: 8px;
   background: #e8f1fc;
   color: #000;
   font-size: 16px;
   transition: background 0.3s ease, color 0.3s ease;
}

.srv_tab:hover {
   background: rgba(255, 255, 255, 0.1);
   color: #fff;
}

.srv_tab.is-active {
   background: #e8f1fc;
   color: #000;
}

.srv_tab.is-active .srv_tab_icon img {
   filter: brightness(0) invert(1);
}

.srv_tab.is-active .srv_tab_icon {
   background: #000;
   color: #fff;
}

.llm_ben_face li::before {
   content: "\f00c";
   font-family: 'FontAwesome';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
}

@media (max-width: 991px) {
   .srv_tabs {
      flex-wrap: wrap;
      border-radius: 0;
   }

   .srv_tab {
      flex: 1 1 50%;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
      border-bottom: 1px solid rgba(255, 255, 255, 0.18);
      font-size: 14px;
      padding: 16px 12px;
   }

   .srv_tab:nth-child(2n) {
      border-right: none;
   }
}

@media (max-width: 600px) {
   .srv_tab {
      flex: 1 1 100%;
      border-right: none;
      justify-content: flex-start;
      padding: 14px 18px;
   }
}

/* LLM Integration Challenge — split intro + numbered steps
   -------------------------------------------------------------------------- */
.llm_challenge {
   position: relative;
   padding: 90px 0 80px;
   /* background-color: #f5f8fd; */
   overflow: hidden;
   isolation: isolate;
}

.llm_chal_blob {
   position: absolute;
   border-radius: 50%;
   filter: blur(90px);
   opacity: 0.45;
   z-index: -1;
   pointer-events: none;
   display: none;
}

.llm_chal_blob--1 {
   top: -120px;
   left: -120px;
   width: 360px;
   height: 360px;
   background: #cfe1f7;
}

.llm_chal_blob--2 {
   bottom: -140px;
   right: -100px;
   width: 380px;
   height: 380px;
   background: #d8eefb;
   opacity: 0.55;
}

.llm_chal_split {
   display: grid;
   grid-template-columns: 0.85fr 1.15fr;
   gap: 70px;
   align-items: flex-start;
}

.llm_chal_intro {
   position: sticky;
   top: 110px;
}

.llm_chal_tag {
   font-size: 19px;
   font-weight: 400;
   line-height: 1.6;
   margin-top: 0;
   font-family: "Open Sans", sans-serif;
   /* margin-bottom: 20px; */
   color: #000;
}

.llm_chal_intro h2 {
   font-size: 40px;
   font-weight: 700;
   line-height: 1.18;
   color: #0b1b34;
   margin: 20px 0 18px;
   letter-spacing: -0.5px;
}

.llm_chal_intro h2 span {
   color: #000;
}

.llm_chal_intro p {
   font-size: 16px;
   line-height: 1.75;
   color: #5b6677;
   margin: 0 0 28px;
   max-width: 440px;
}

.llm_chal_rule {
   display: block;
   width: 64px;
   height: 4px;
   border-radius: 100px;
   background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   margin-bottom: 28px;
}

.llm_chal_cta {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 22px;
   border-radius: 100px;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   box-shadow: 0 14px 28px rgba(10, 102, 194, 0.28);
   transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.llm_chal_cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 36px rgba(10, 102, 194, 0.35);
   color: #fff;
}

.llm_chal_cta i {
   transition: transform 0.35s ease;
}

.llm_chal_cta:hover i {
   transform: translateX(4px);
}

.llm_chal_list {
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.llm_chal_item {
   position: relative;
   display: grid;
   grid-template-columns: 64px 1fr;
   gap: 22px;
   align-items: flex-start;
   padding: 26px 28px 26px 24px;
   background-color: #fff;
   border: 1px solid #eaf0f7;
   border-radius: 18px;
   box-shadow: 0 10px 28px rgba(11, 27, 52, 0.05);
   overflow: hidden;
   transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.llm_chal_item::before {
   content: "";
   position: absolute;
   left: 0;
   top: 0;
   bottom: 0;
   width: 4px;
   background: linear-gradient(180deg, #0a66c2 0%, #00aeef 100%);
   transform: scaleY(0.25);
   transform-origin: top;
   transition: transform 0.45s ease;
}

.llm_chal_item:hover {
   transform: translateX(6px);
   border-color: transparent;
   box-shadow: 0 22px 44px rgba(10, 102, 194, 0.14);
}

.llm_chal_item:hover::before {
   transform: scaleY(1);
}

.llm_chal_step {
   position: absolute;
   top: 14px;
   right: 22px;
   font-size: 48px;
   font-weight: 800;
   line-height: 1;
   letter-spacing: -1.5px;
   color: rgba(10, 102, 194, 0.08);
   pointer-events: none;
}

.llm_chal_badge {
   width: 56px;
   height: 56px;
   border-radius: 50%;
   /* background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%); */
   color: #000;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 22px;
   /* box-shadow: 0 10px 22px rgba(10, 102, 194, 0.28); */
   flex: 0 0 auto;
   background-color: #e9f2ff;
}

.llm_chal_body {
   min-width: 0;
   padding-right: 50px;
}

.llm_chal_body h3 {
   font-size: 19px;
   font-weight: 700;
   color: #0b1b34;
   line-height: 1.3;
   margin: 4px 0 8px;
}

.llm_chal_body p {
   font-size: 15px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0;
}

@media (max-width: 991px) {
   .llm_challenge {
      padding: 60px 0 50px;
   }

   .llm_chal_split {
      grid-template-columns: 1fr;
      gap: 40px;
   }

   .llm_chal_intro {
      position: static;
   }

   .llm_chal_intro h2 {
      font-size: 30px;
   }

   .llm_chal_intro p {
      max-width: none;
   }
}

@media (max-width: 600px) {
   .llm_challenge {
      padding: 50px 0 40px;
   }

   .llm_chal_intro h2 {
      font-size: 24px;
   }

   .llm_chal_item {
      grid-template-columns: 52px 1fr;
      gap: 16px;
      padding: 22px 20px;
   }

   .llm_chal_badge {
      width: 48px;
      height: 48px;
      font-size: 18px;
   }

   .llm_chal_step {
      font-size: 36px;
      top: 12px;
      right: 16px;
   }

   .llm_chal_body {
      padding-right: 40px;
   }

   .llm_chal_body h3 {
      font-size: 17px;
   }
}

/* Key Benefits of LLM Integration — 3D flip cards
   -------------------------------------------------------------------------- */
.llm_benefits {
   padding: 0 0 60px;
   background-color: #fff;
   position: relative;
   overflow: hidden;
}

.llm_benefits .section4_top {
   text-align: center;
   max-width: 760px;
   margin: 0 auto 40px;
}

.llm_benefits .section4_top h2 span {
   color: #000;
}

.llm_ben_grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 30px;
   margin-top: 40px;
   perspective: 1600px;
}

.llm_ben_flip {
   position: relative;
   width: 100%;
   height: 480px;
   perspective: 1600px;
   outline: none;
}

.llm_ben_inner {
   position: relative;
   width: 100%;
   height: 100%;
   transform-style: preserve-3d;
   transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
   border-radius: 22px;
}

.llm_ben_flip:hover .llm_ben_inner,
.llm_ben_flip:focus-within .llm_ben_inner,
.llm_ben_flip.is-flipped .llm_ben_inner {
   transform: rotateY(180deg);
}

.llm_ben_face {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   padding: 32px;
   border-radius: 22px;
   overflow: hidden;
   display: flex;
   flex-direction: column;
   backface-visibility: hidden;
   -webkit-backface-visibility: hidden;
}

.llm_ben_front {
   background-color: #0b1b34;
   color: #fff;
   justify-content: space-between;
   box-shadow: 0 20px 44px rgba(11, 27, 52, 0.18);
   isolation: isolate;
}

.llm_ben_img {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
   z-index: -2;
   transition: transform 0.8s ease;
}

.llm_ben_flip:hover .llm_ben_img {
   transform: scale(1.06);
}

.llm_ben_front::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image: linear-gradient(#0000, #000000e6);
   z-index: -1;
   pointer-events: none;
}

.llm_ben_front_top {
   position: relative;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 12px;
   z-index: 1;
}

.llm_ben_num {
   font-size: 13px;
   font-weight: 700;
   letter-spacing: 1px;
   padding: 6px 12px;
   border-radius: 8px;
   background-color: rgba(255, 255, 255, 0.16);
   color: #fff;
}

.llm_ben_ico {
   width: 58px;
   height: 58px;
   border-radius: 16px;
   background-color: rgba(255, 255, 255, 0.14);
   border: 1px solid rgba(255, 255, 255, 0.22);
   -webkit-backdrop-filter: blur(6px);
   backdrop-filter: blur(6px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   color: #fff;
}

.llm_ben_front_bot {
   position: relative;
   z-index: 1;
}

.llm_ben_front_bot h3 {
   font-size: 28px;
   font-weight: 700;
   line-height: 1.2;
   color: #fff;
   margin: 0 0 14px;
   letter-spacing: -0.3px;
}

.llm_ben_front_bot p {
   font-size: 15px;
   line-height: 1.7;
   color: rgba(255, 255, 255, 0.82);
   margin: 0 0 22px;
}

.llm_ben_hint {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.4px;
   text-transform: uppercase;
   color: #9cd5ff;
}

.llm_ben_hint i {
   font-size: 14px;
   transition: transform 0.35s ease;
}

.llm_ben_flip:hover .llm_ben_hint i,
.llm_ben_flip:focus-within .llm_ben_hint i {
   transform: translateX(4px);
}

.llm_ben_back {
   background-color: #fff;
   color: #0b1b34;
   border: 1px solid #e6ecf3;
   transform: rotateY(180deg);
   box-shadow: 0 20px 44px rgba(10, 102, 194, 0.1);
}

.llm_ben_back::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 5px;
   background: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
}

.llm_ben_back_lbl {
   display: inline-block;
   font-size: 11px;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   font-weight: 700;
   color: #0a66c2;
   margin: 6px 0 12px;
}

.llm_ben_back h3 {
   font-size: 22px;
   font-weight: 700;
   line-height: 1.25;
   color: #0b1b34;
   margin: 0 0 18px;
}

.llm_ben_pts {
   list-style: none;
   margin: 0 0 22px;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 10px;
   flex: 1 1 auto;
}

.llm_ben_pts li {
   display: flex;
   align-items: center;
   gap: 12px;
   font-size: 14px;
   line-height: 1.55;
   color: #1f2937;
   position: relative;
   padding-left: 35px;
}

.llm_ben_pts li i {
   flex: 0 0 auto;
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: #000;
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
   /* box-shadow: 0 4px 10px rgba(10, 102, 194, 0.25); */
}

.llm_ben_cta {
   margin-top: auto;
   align-self: flex-start;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 24px;
   border-radius: 100px;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   box-shadow: 0 12px 24px rgba(10, 102, 194, 0.28);
   transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.llm_ben_cta i {
   transition: transform 0.35s ease;
}

.llm_ben_cta:hover {
   transform: translateY(-2px);
   box-shadow: 0 16px 32px rgba(10, 102, 194, 0.36);
   color: #fff;
}

.llm_ben_cta:hover i {
   transform: translateX(4px);
}

@media (max-width: 991px) {
   .llm_benefits {
      padding: 0 0 50px;
   }

   .llm_ben_grid {
      grid-template-columns: 1fr;
      gap: 24px;
   }

   .llm_ben_flip {
      height: 460px;
   }

   .llm_ben_front_bot h3 {
      font-size: 24px;
   }
}

@media (max-width: 600px) {
   .llm_benefits {
      padding: 0 0 40px;
   }

   .llm_ben_flip {
      height: 460px;
   }

   .llm_ben_face {
      padding: 26px 22px;
   }

   .llm_ben_front_bot h3 {
      font-size: 22px;
   }

   .llm_ben_back h3 {
      font-size: 20px;
   }
}

/* How LLM Integration Works — stacked horizontal process bars
   -------------------------------------------------------------------------- */
.llm_process {
   padding: 10px 0 70px;
   background-color: #fff;
   position: relative;
   overflow: hidden;
}

.llm_process .section4_top {
   text-align: center;
   max-width: 760px;
   margin: 0 auto 30px;
}

.llm_process .section4_top h2 span {
   color: #000;
}

.llm_steps {
   max-width: 1080px;
   margin: 30px auto 0;
   display: flex;
   flex-direction: column;
   align-items: stretch;
   gap: 0;
}

.llm_step {
   position: relative;
   display: grid;
   grid-template-columns: 260px 1fr;
   gap: 0;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 22px;
   overflow: hidden;
   box-shadow: 0 14px 34px rgba(11, 27, 52, 0.06);
   transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.llm_step:hover {
   transform: translateY(-4px);
   border-color: transparent;
   box-shadow: 0 26px 54px rgba(10, 102, 194, 0.14);
}

.llm_step_left {
   position: relative;
   padding: 32px 28px;
   background: #e9f2ff;
   color: #000;
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   justify-content: center;
   gap: 18px;
   overflow: hidden;
}

/* .llm_step_left::before {
   content: "";
   position: absolute;
   inset: 0;
   background-image:
      radial-gradient(circle at 85% 15%, rgba(0, 174, 239, 0.32), transparent 55%),
      radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.06), transparent 60%);
   pointer-events: none;
} */

.llm_step_ico {
   position: relative;
   width: 64px;
   height: 64px;
   border-radius: 18px;
   background-color: #fff;
   border: 1px solid rgba(255, 255, 255, 0.22);
   -webkit-backdrop-filter: blur(6px);
   backdrop-filter: blur(6px);
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 28px;
   color: #3766ae;
}

.llm_step_dur {
   position: relative;
   display: flex;
   flex-direction: column;
   gap: 2px;
}

.llm_step_dur strong {
   font-size: 22px;
   font-weight: 800;
   line-height: 1.1;
   letter-spacing: -0.3px;
   color: #000;
}

.llm_step_dur em {
   font-style: normal;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   color: #707070;
}

.llm_step_body {
   padding: 32px 36px;
   display: flex;
   flex-direction: column;
}

.llm_step_body h3 {
   font-size: 24px;
   font-weight: 700;
   line-height: 1.25;
   color: #000;
   margin: 0 0 10px;
   letter-spacing: -0.3px;
}

.llm_step_body>p {
   font-size: 15px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0 0 18px;
}

.llm_step_body ul {
   list-style: none;
   margin: 0;
   padding: 16px 0 0;
   border-top: 1px dashed #e6ecf3;
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 10px 18px;
}

.llm_step_pts li {
   display: flex;
   align-items: center;
   gap: 10px;
   font-size: 14px;
   line-height: 1.5;
   color: #1f2937;
   padding-left: 35px;
   position: relative;
}

.llm_process li::before {
   content: "\f00c";
   font-family: 'FontAwesome';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
}

.llm_step_pts li i {
   flex: 0 0 auto;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: #000;
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 9px;
   /* box-shadow: 0 4px 10px rgba(10, 102, 194, 0.22); */
}

.llm_step_arrow {
   align-self: center;
   width: 42px;
   height: 42px;
   margin: 14px 0;
   border-radius: 50%;
   background: #e9f2ff;
   color: #000;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   /* box-shadow: 0 10px 22px rgba(10, 102, 194, 0.3); */
}

@media (max-width: 991px) {
   .llm_process {
      padding: 0 0 50px;
   }

   .llm_step {
      grid-template-columns: 1fr;
   }

   .llm_step_left {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      padding: 22px 24px;
   }

   .llm_step_body {
      padding: 26px 24px;
   }

   .llm_step_body h3 {
      font-size: 22px;
   }
}

@media (max-width: 600px) {
   .llm_step_pts {
      grid-template-columns: 1fr;
   }

   .llm_step_left {
      gap: 16px;
   }

   .llm_step_ico {
      width: 56px;
      height: 56px;
      font-size: 24px;
   }

   .llm_step_dur strong {
      font-size: 20px;
   }

   .llm_step_body h3 {
      font-size: 20px;
   }
}

/* Industries — Healthcare focus cards
   -------------------------------------------------------------------------- */
.ind_focus {
   padding: 0 0 70px 0;
   background-image: linear-gradient(180deg, #000 0, #000 20%, #FCFCF8 20%, #FCFCF8 100%);
   position: relative;
   overflow: hidden;
}

.ind_focus .section4_top {
   text-align: center;
   max-width: 800px;
   margin: 0 auto 40px;
}

.ind_focus .section4_top h4 {
   color: #9cd5ff;
}

.ind_focus .section4_top h2 {
   color: #fff;
}

.ind_focus .section4_top h2 span {
   color: #fff;
}

.ind_focus .section4_top p {
   color: rgba(255, 255, 255, 0.72);
}

.ind_focus_grid {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 26px;
   margin-top: 30px;
}

.ind_focus_card {
   position: relative;
   display: grid;
   grid-template-columns: 110px 1fr;
   gap: 0;
   align-items: stretch;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 20px;
   box-shadow: 0 14px 30px rgba(11, 27, 52, 0.06);
   text-decoration: none;
   color: inherit;
   overflow: hidden;
   transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.ind_focus_card:hover {
   transform: translateY(-8px);
   border-color: transparent;
   box-shadow: 0 28px 60px rgba(10, 102, 194, 0.18);
}

.ind_focus_icon {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 100%;
   height: 100%;
   min-height: 140px;
   background-color: #000;
   color: #fff;
   font-size: 40px;
   transition: background 0.4s ease, color 0.4s ease;
}

.ind_focus_card:hover .ind_focus_icon {
   background: #000;
   color: #fff;
}

.ind_focus_body {
   display: flex;
   flex-direction: column;
   padding: 26px 28px 22px;
}

.ind_focus_tag {
   display: inline-block;
   font-size: 11px;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   font-weight: 700;
   color: #00aeef;
   margin-bottom: 8px;
}

.ind_focus_card h3 {
   font-size: 19px;
   font-weight: 700;
   line-height: 1.3;
   color: #0b1b34;
   margin: 0 0 10px;
   letter-spacing: -0.2px;
}

.ind_focus_body>p {
   font-size: 14px;
   line-height: 1.65;
   color: #5b6677;
   margin: 0 0 18px;
}

.ind_focus_link {
   margin-top: auto;
   align-self: flex-end;
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   color: #000;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.ind_focus_link i {
   transition: transform 0.35s ease;
}

.ind_focus_card:hover .ind_focus_link {
   background: #000;
   border-color: transparent;
   color: #fff;
}

.ind_focus_card:hover .ind_focus_link i {
   transform: translateX(3px);
}

@media (max-width: 991px) {
   .ind_focus {
      padding: 10px 0 50px;
   }

   .ind_focus_grid {
      grid-template-columns: 1fr;
      gap: 20px;
   }

   .ind_focus_card {
      grid-template-columns: 100px 1fr;
   }
}

@media (max-width: 600px) {
   .ind_focus_card {
      grid-template-columns: 80px 1fr;
   }

   .ind_focus_icon {
      font-size: 30px;
      min-height: 110px;
   }

   .ind_focus_body {
      padding: 22px 20px 20px;
   }

   .ind_focus_card h3 {
      font-size: 18px;
   }
}

/* home_qlinks2 — 3-column variant for inner pages
   -------------------------------------------------------------------------- */
.home_qlinks2--3col .grid {
   grid-template-columns: repeat(3, 1fr);
   gap: 22px;
}

.home_qlinks2--3col .grid a>img {
   /* height: 380px; */
}

.home_qlinks2--3col .hq2_grid_1_in {
   padding: 28px;
}

.home_qlinks2--3col .hq2_grid_1_in h2 {
   font-size: 22px;
   line-height: 1.25;
}

.home_qlinks2--3col .hq2_grid_1_in h3 {
   font-size: 13px;
}

.home_qlinks2--3col .hq2_grid_1_in p {
   font-size: 14px;
}

@media (max-width: 991px) {
   .home_qlinks2--3col .grid {
      grid-template-columns: repeat(2, 1fr);
   }

   .home_qlinks2--3col .grid a>img {
      height: 340px;
   }
}

@media (max-width: 600px) {
   .home_qlinks2--3col .grid {
      grid-template-columns: 1fr;
   }
}

/* Blog details page — single article
   -------------------------------------------------------------------------- */
.innerbanner .blog_kicker {
   display: inline-block;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   color: #00aeef;
   margin-bottom: 12px;
}

.innerbanner .blog_meta {
   list-style: none;
   margin: 22px 0 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
}

.innerbanner .blog_meta li {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.78);
}

.innerbanner .blog_meta li i {
   color: #00aeef;
}

.innerbanner .blog_meta li strong {
   color: #fff;
   font-weight: 600;
}

/* Allow the inner card to overlap the banner above */
.main_section:has(> .blog_post) {
   overflow: visible;
}

.blog_post {
   padding: 0 0 40px;
   background-color: transparent;
   position: relative;
   overflow: visible;
}

.blog_post .container {
   /* max-width: 1200px; */
}

.blog_post_inner {
   position: relative;
   margin-top: -90px;
   padding: 44px 50px 50px;
   background-color: #fff;
   border-radius: 30px 30px 22px 22px;
   box-shadow: 0 -8px 40px rgba(11, 27, 52, 0.08), 0 30px 60px rgba(11, 27, 52, 0.12);
   z-index: 2;
}

.blog_back {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 10px 22px;
   border-radius: 100px;
   border: 1px solid #000;
   color: #000;
   font-size: 14px;
   font-weight: 600;
   text-decoration: none;
   margin-bottom: 26px;
   transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog_back i {
   transition: transform 0.3s ease;
}

.blog_back:hover {
   background-color: #000;
   border-color: #000;
   color: #fff;
   transform: translateX(-3px);
}

.blog_back:hover i {
   transform: translateX(-3px);
}

.blog_post_title {
   font-size: 44px;
   font-weight: 800;
   line-height: 1.15;
   color: #0b1b34;
   margin: 0 0 30px;
   letter-spacing: -1px;
   max-width: 920px;
}

.blog_post_featured {
   margin: 0 0 50px;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 24px 50px rgba(11, 27, 52, 0.12);
   aspect-ratio: 16 / 7;
}

.blog_post_featured img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}

.blog_post_layout {
   display: grid;
   grid-template-columns: minmax(0, 1fr) 320px;
   gap: 48px;
   align-items: start;
}

.blog_post_body {
   color: #1f2937;
   min-width: 0;
}

.blog_sidebar {
   position: sticky;
   top: 100px;
   display: flex;
   flex-direction: column;
   gap: 18px;
}

.blog_sidebar_card {
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 18px;
   padding: 24px;
   box-shadow: 0 10px 26px rgba(11, 27, 52, 0.05);
}

.blog_related_card {
   background-color: #fdf8ef;
   border: 1px solid #e8dfca;
   border-radius: 18px;
   padding: 26px 26px 12px;
}

.blog_related_title {
   font-size: 22px;
   font-weight: 700;
   color: #0b1b34;
   margin: 0 0 18px;
   letter-spacing: -0.2px;
}

.blog_related_list {
   list-style: none;
   margin: 0;
   padding: 0;
}

.blog_related_list li {
   padding: 16px 0;
   border-bottom: 1px dashed #9bb7d4;
}

.blog_related_list li:last-child {
   border-bottom: none;
}

.blog_related_list a {
   display: block;
   font-size: 15px;
   font-weight: 700;
   line-height: 1.45;
   color: #0b1b34;
   text-decoration: none;
   transition: color 0.25s ease;
}

.blog_related_list a:hover {
   color: #0a66c2;
}

.blog_author_card {
   text-align: center;
   padding-top: 28px;
}

.blog_author_card .blog_author_avatar {
   width: 76px;
   height: 76px;
   margin: 0 auto 14px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 42px;
}

.blog_author_card .blog_author_role {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.4px;
   text-transform: uppercase;
   color: #00aeef;
   margin-bottom: 4px;
}

.blog_author_card h4 {
   font-size: 18px;
   font-weight: 700;
   color: #0b1b34;
   margin: 0 0 10px;
}

.blog_author_card p {
   font-size: 13.5px;
   line-height: 1.65;
   color: #5b6677;
   margin: 0;
}

.blog_share_card h5,
.blog_toc h5 {
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   color: #0b1b34;
   margin: 0 0 14px;
}

.blog_share_card .blog_share {
   display: flex;
   gap: 10px;
   margin: 0;
}

.blog_share_card .blog_share a {
   flex: 1 1 auto;
}

.blog_toc ol {
   list-style: none;
   counter-reset: toc-counter;
   margin: 0;
   padding: 0;
}

.blog_toc li {
   counter-increment: toc-counter;
   padding: 8px 0;
   border-bottom: 1px dashed #e6ecf3;
}

.blog_toc li:last-child {
   border-bottom: none;
}

.blog_toc li a {
   position: relative;
   display: block;
   padding-left: 28px;
   font-size: 13.5px;
   line-height: 1.5;
   color: #1f2937;
   text-decoration: none;
   transition: color 0.3s ease;
}

.blog_toc li a::before {
   content: counter(toc-counter, decimal-leading-zero);
   position: absolute;
   left: 0;
   top: 0;
   font-size: 11px;
   font-weight: 800;
   color: #00aeef;
   letter-spacing: 0.5px;
}

.blog_toc li a:hover {
   color: #0a66c2;
}

.blog_lead {
   font-size: 19px;
   line-height: 1.7;
   color: #0b1b34;
   margin: 0 0 28px;
   font-weight: 500;
}

.blog_post_body h2 {
   font-size: 28px;
   font-weight: 700;
   line-height: 1.25;
   color: #0b1b34;
   margin: 40px 0 14px;
   letter-spacing: -0.3px;
}

.blog_post_body h3 {
   font-size: 20px;
   font-weight: 700;
   line-height: 1.3;
   color: #0b1b34;
   margin: 28px 0 10px;
}

.blog_post_body p {
   font-size: 16px;
   line-height: 1.8;
   color: #3e4a5b;
   margin: 0 0 18px;
}

.blog_post_body p>em {
   color: #0a66c2;
   font-style: italic;
}

.blog_quote {
   position: relative;
   margin: 36px 0;
   padding: 28px 32px 28px 70px;
   border-radius: 16px;
   background: linear-gradient(135deg, rgba(10, 102, 194, 0.06) 0%, rgba(0, 174, 239, 0.06) 100%);
   border-left: 4px solid #0a66c2;
   font-size: 18px;
   line-height: 1.6;
   color: #0b1b34;
   font-style: italic;
}

.blog_quote::before {
   content: "\201C";
   position: absolute;
   left: 22px;
   top: 12px;
   font-family: Georgia, serif;
   font-size: 64px;
   line-height: 1;
   color: #0a66c2;
   opacity: 0.4;
}

.blog_quote cite {
   display: block;
   margin-top: 12px;
   font-size: 14px;
   font-style: normal;
   font-weight: 600;
   color: #5b6677;
}

.blog_list {
   margin: 0 0 22px;
   padding: 0 0 0 4px;
   list-style: none;
}

.blog_list li {
   position: relative;
   font-size: 16px;
   line-height: 1.7;
   color: #3e4a5b;
   padding: 6px 0 6px 32px;
}

.blog_list li::before {
   content: "\f00c";
   font-family: 'FontAwesome';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
}

.blog_list--ordered {
   counter-reset: blog-counter;
}

.blog_list--ordered li {
   counter-increment: blog-counter;
   padding-left: 44px;
}

.blog_list--ordered li::before {
   content: counter(blog-counter);
   font-family: inherit;
   font-size: 13px;
   font-weight: 800;
   width: 28px;
   height: 28px;
}

.blog_post_footer {
   margin-top: 40px;
   padding: 24px 0 0;
   border-top: 1px solid #e6ecf3;
}

.blog_tags,
.blog_share {
   display: inline-flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 10px;
}

.blog_tags_label {
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.4px;
   text-transform: uppercase;
   color: #0b1b34;
   margin-right: 4px;
}

.blog_tags a {
   font-size: 13px;
   font-weight: 600;
   color: #0a66c2;
   padding: 6px 14px;
   border-radius: 100px;
   background-color: rgba(10, 102, 194, 0.08);
   text-decoration: none;
   transition: background 0.3s ease, color 0.3s ease;
}

.blog_tags a:hover {
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
}

.blog_share_block {
   margin-top: 28px;
   padding-top: 22px;
   border-top: 1px dashed #9bb7d4;
}

.blog_share_label {
   display: block;
   font-size: 16px;
   font-weight: 700;
   color: #0b1b34;
   margin-bottom: 14px;
}

.blog_share_row {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 14px;
}

.blog_share_btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 10px 22px;
   border: 1.5px solid #0b1b34;
   border-radius: 100px;
   background-color: #fff;
   color: #0b1b34;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.6px;
   text-decoration: none;
   transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.blog_share_btn i {
   font-size: 18px;
   color: #0a66c2;
   transition: color 0.25s ease;
}

.blog_share_btn:hover {
   background-color: #0a66c2;
   border-color: #0a66c2;
   color: #fff;
}

.blog_share_btn:hover i {
   color: #fff;
}

.blog_share_sep {
   color: #9bb7d4;
   font-size: 16px;
   line-height: 1;
}

@media (max-width: 600px) {
   .blog_share_sep {
      display: none;
   }

   .blog_share_btn {
      padding: 9px 18px;
      font-size: 13px;
   }
}

.blog_share a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   color: #0a66c2;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   text-decoration: none;
   transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.blog_share a:hover {
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   border-color: transparent;
   color: #fff;
   transform: translateY(-2px);
}


@media (max-width: 991px) {
   .innerbanner .blog_meta {
      gap: 14px;
   }

   .blog_post {
      padding: 0 0 30px;
   }

   .blog_post_inner {
      margin-top: -60px;
      padding: 32px 30px 36px;
      border-radius: 24px 24px 18px 18px;
   }

   .blog_post_title {
      font-size: 30px;
   }

   .blog_post_layout {
      grid-template-columns: 1fr;
      gap: 36px;
   }

   .blog_sidebar {
      position: static;
      order: 2;
   }

   .blog_post_body h2 {
      font-size: 24px;
   }

   .blog_quote {
      padding: 24px 24px 24px 60px;
      font-size: 16px;
   }
}

@media (max-width: 600px) {
   .blog_post {
      padding: 0 0 24px;
   }

   .blog_post_inner {
      margin-top: -36px;
      padding: 24px 22px 30px;
      border-radius: 20px 20px 14px 14px;
   }

   .blog_post_title {
      font-size: 24px;
      letter-spacing: -0.5px;
   }

   .blog_back {
      font-size: 13px;
      padding: 8px 18px;
   }

   .blog_post_featured {
      aspect-ratio: 16 / 10;
      border-radius: 18px;
   }

   .blog_lead {
      font-size: 17px;
   }

   .blog_post_body h2 {
      font-size: 22px;
   }

   .blog_post_body h3 {
      font-size: 18px;
   }

   .blog_post_body p {
      font-size: 15px;
   }

   .blog_sidebar_card {
      padding: 20px;
   }

   .blog_author_card .blog_author_avatar {
      width: 64px;
      height: 64px;
      font-size: 34px;
   }
}

/* Contact Us page — info cards + form & map split
   -------------------------------------------------------------------------- */
.ctc_info {
   padding: 20px 0 60px;
   background-color: #000;
}

.ctc_info_grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 28px;
}

.ctc_info_card {
   position: relative;
   display: flex;
   flex-direction: column;
   padding: 26px 26px 28px;
   background-color: rgba(27, 27, 27, 0.4);
   -webkit-backdrop-filter: blur(3px);
   backdrop-filter: blur(3px);
   border: 1px solid hsla(0, 0%, 100%, 0.2);
   border-radius: 20px;
   box-shadow: 0 0 1px 1px rgba(27, 27, 27, 0.4);
   text-decoration: none;
   color: #fff;
   transition: transform 0.4s ease;
}

.ctc_info_card:hover {
   transform: translateY(-20px);
}

.ctc_info_icon {
   width: 56px;
   height: 56px;
   border-radius: 14px;
   background-color: rgba(255, 255, 255, 0.08);
   border: 1px solid hsla(0, 0%, 100%, 0.18);
   color: #00aeef;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 24px;
   margin-bottom: 18px;
   -webkit-backdrop-filter: blur(6px);
   backdrop-filter: blur(6px);
   transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.ctc_info_card:hover .ctc_info_icon {
   /* background-image: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   border-color: transparent; */
}

.ctc_info_label {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.6px;
   text-transform: uppercase;
   color: #9cd5ff;
   margin-bottom: 6px;
}

.ctc_info_card h3 {
   position: relative;
   margin: 0 0 14px;
   padding-right: 36px;
   font-size: 21px;
   font-weight: 600;
   line-height: 1.35;
   color: #fff;
}

.ctc_info_card h3::before {
   position: absolute;
   right: 0;
   top: 50%;
   transform: translateY(-50%);
   content: "\f178";
   font-family: 'FontAwesome';
   font-size: 18px;
   color: #00aeef;
   opacity: 0;
   transition: opacity 0.35s ease, transform 0.35s ease;
}

.ctc_info_card:hover h3::before {
   opacity: 1;
   transform: translateY(-50%) translateX(4px);
}

.ctc_info_card p {
   font-size: 14px;
   line-height: 1.65;
   color: hsla(0, 0%, 100%, 0.65);
   margin: 0 0 16px;
}

.ctc_info_link {
   margin-top: auto;
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   color: #9cd5ff;
}

.ctc_info_link i {
   transition: transform 0.35s ease;
}

.ctc_info_card:hover .ctc_info_link i {
   transform: translateX(6px);
}

/* Main split: form + map */
.ctc_main {
   padding: 50px 0 80px;
   /* background-color: #fff; */
}

.ctc_split {
   display: grid;
   grid-template-columns: 1fr;
   gap: 40px;
   align-items: stretch;
}

.ctc_form_wrap {
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 18px;
   padding: 48px 56px 52px;
   box-shadow: 0 8px 24px rgba(11, 27, 52, 0.04);
}

.ctc_form_kicker {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #0a66c2;
   margin-bottom: 14px;
}

.ctc_form_kicker::before {
   content: "";
   width: 28px;
   height: 2px;
   background-color: #0a66c2;
   border-radius: 2px;
}

.ctc_form_wrap h2 {
   font-size: 32px;
   font-weight: 700;
   line-height: 1.22;
   color: #0b1b34;
   margin: 0 0 14px;
   letter-spacing: -0.4px;
}

.ctc_form_wrap h2 span {
   color: #0a66c2;
}

.ctc_form_lead {
   font-size: 15px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0 0 32px;
   max-width: 620px;
}

.ctc_form {
   display: flex;
   flex-direction: column;
   gap: 22px;
}

.ctc_form_row {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 22px;
}

.ctc_field {
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.ctc_field_label {
   font-size: 13px;
   font-weight: 600;
   letter-spacing: 0;
   text-transform: none;
   color: #0b1b34;
}

.ctc_field_label::after {
   content: "";
}

.ctc_field input,
.ctc_field select,
.ctc_field textarea {
   width: 100%;
   padding: 14px 16px;
   border: 1px solid #d8dfe8;
   border-radius: 10px;
   background-color: #fff;
   font-family: inherit;
   font-size: 15px;
   line-height: 1.4;
   color: #0b1b34;
   transition: border-color 0.2s ease, box-shadow 0.2s ease;
   appearance: none;
   -webkit-appearance: none;
}

.ctc_field select {
   background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3e%3cpath fill='none' stroke='%235b6677' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3e%3c/svg%3e");
   background-repeat: no-repeat;
   background-position: right 16px center;
   background-size: 12px 8px;
   padding-right: 42px;
}

.ctc_field input::placeholder,
.ctc_field textarea::placeholder {
   color: #9aa6b6;
}

.ctc_field input:hover,
.ctc_field select:hover,
.ctc_field textarea:hover {
   border-color: #b9c4d4;
}

.ctc_field input:focus,
.ctc_field select:focus,
.ctc_field textarea:focus {
   outline: none;
   border-color: #0a66c2;
   box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.1);
}

.ctc_field textarea {
   resize: vertical;
   min-height: 130px;
   line-height: 1.6;
}

.ctc_check {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   font-size: 13px;
   line-height: 1.55;
   color: #5b6677;
   margin: 0;
}

.ctc_check input {
   width: 18px;
   height: 18px;
   margin-top: 1px;
   flex: 0 0 auto;
   accent-color: #0a66c2;
   cursor: pointer;
}

.ctc_submit {
   align-self: flex-start;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 14px 30px;
   border: 0;
   border-radius: 8px;
   background-color: #0a66c2;
   color: #fff;
   font-size: 14px;
   font-weight: 600;
   letter-spacing: 0.2px;
   cursor: pointer;
   box-shadow: 0 6px 16px rgba(10, 102, 194, 0.22);
   transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
   margin-top: 6px;
}

.ctc_submit i {
   font-size: 13px;
   transition: transform 0.25s ease;
}

.ctc_submit:hover {
   background-color: #084f97;
   box-shadow: 0 10px 22px rgba(10, 102, 194, 0.32);
   transform: translateY(-1px);
}

.ctc_submit:hover i {
   transform: translateX(4px);
}

.ctc_submit:focus-visible {
   outline: none;
   box-shadow: 0 0 0 4px rgba(10, 102, 194, 0.18), 0 6px 16px rgba(10, 102, 194, 0.22);
}

/* Map column */
.ctc_map_wrap {
   display: flex;
   flex-direction: column;
   height: 100%;
}

.ctc_map {
   position: relative;
   flex: 1 1 auto;
   min-height: 420px;
   border-radius: 24px;
   overflow: hidden;
   box-shadow: 0 16px 40px rgba(11, 27, 52, 0.1);
   isolation: isolate;
}

.ctc_map iframe {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   border: 0;
   filter: grayscale(0.15) contrast(1.05);
}

.ctc_map_card {
   padding: 26px 26px 22px;
   background-image: linear-gradient(160deg, #0b1b34 0%, #0a66c2 100%);
   color: #fff;
   border-radius: 22px;
   box-shadow: 0 16px 40px rgba(11, 27, 52, 0.18);
}

.ctc_map_card_top {
   display: flex;
   align-items: center;
   gap: 14px;
   margin-bottom: 18px;
}

.ctc_map_ico {
   width: 48px;
   height: 48px;
   border-radius: 14px;
   background-color: rgba(255, 255, 255, 0.14);
   border: 1px solid rgba(255, 255, 255, 0.2);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 18px;
   flex: 0 0 auto;
}

.ctc_map_card .ctc_form_kicker {
   color: #9cd5ff;
   margin-bottom: 4px;
}

.ctc_map_card h4 {
   font-size: 17px;
   font-weight: 700;
   color: #fff;
   margin: 0;
}

.ctc_hours {
   list-style: none;
   margin: 0 0 18px;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 8px;
}

.ctc_hours li {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 8px 0;
   border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
   font-size: 13.5px;
   color: rgba(255, 255, 255, 0.78);
}

.ctc_hours li:last-child {
   border-bottom: none;
}

.ctc_hours li strong {
   color: #fff;
   font-weight: 700;
}

.ctc_social {
   display: flex;
   gap: 10px;
}

.ctc_social a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   border: 1px solid rgba(255, 255, 255, 0.22);
   background-color: rgba(255, 255, 255, 0.08);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 15px;
   text-decoration: none;
   transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.ctc_social a:hover {
   background-color: #fff;
   color: #0a66c2;
   border-color: transparent;
   transform: translateY(-2px);
}

@media (max-width: 991px) {
   .ctc_info_grid {
      grid-template-columns: 1fr;
      gap: 18px;
   }

   .ctc_main {
      padding: 30px 0 60px;
   }

   .ctc_split {
      grid-template-columns: 1fr;
      gap: 28px;
   }

   .ctc_form_wrap {
      padding: 32px 26px;
   }

   .ctc_form_wrap h2 {
      font-size: 26px;
   }
}

@media (max-width: 600px) {
   .ctc_info {
      padding: 30px 0 10px;
   }

   .ctc_info_card {
      padding: 26px 22px;
   }

   .ctc_form_row {
      grid-template-columns: 1fr;
   }

   .ctc_map {
      min-height: 300px;
   }
}


/* Open Positions — row-style job listings
   -------------------------------------------------------------------------- */
.co_positions {
   padding: 30px 0 80px;
   /* background-color: #fff; */
}

.co_positions .section4_top {
   /* max-width: 880px; */
   margin: 0 auto 30px;
   text-align: center;
}

.co_positions_cta {
   display: flex;
   justify-content: center;
   margin-top: 36px;
}



.op_list {
   display: flex;
   flex-direction: column;
   gap: 14px;
}

.op_row {
   display: grid;
   grid-template-columns: 1.2fr 1fr auto;
   gap: 28px;
   align-items: center;
   padding: 24px 30px;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 14px;
   box-shadow: 0 8px 22px rgba(11, 27, 52, 0.04);
   transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.op_row:hover {
   transform: translateY(-3px);
   border-color: transparent;
   box-shadow: 0 18px 36px rgba(10, 102, 194, 0.12);
}

.op_role h3,
.op_meta h3 {
   font-size: 20px;
   font-weight: 700;
   line-height: 1.25;
   color: #0b1b34;
   margin: 0 0 6px;
   letter-spacing: -0.2px;
}

.op_role span,
.op_meta span {
   display: inline-block;
   font-size: 13.5px;
   color: #5b6677;
}

.op_apply {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   padding: 14px 28px;
   /* border-radius: 8px; */
   background-color: #000;
   color: #fff;
   font-size: 12.5px;
   font-weight: 700;
   letter-spacing: 1.4px;
   text-transform: uppercase;
   text-decoration: none;
   white-space: nowrap;
   transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.op_apply:hover {
   background-color: #000;
   color: #fff;
   transform: translateY(-1px);
   /* box-shadow: 0 10px 22px rgba(10, 102, 194, 0.3); */
}

@media (max-width: 991px) {
   .co_positions {
      padding: 10px 0 60px;
   }

   .op_row {
      grid-template-columns: 1fr;
      gap: 14px;
      padding: 22px 24px;
   }

   .op_apply {
      align-self: flex-start;
   }
}

@media (max-width: 600px) {
   .op_row {
      padding: 20px 20px;
   }

   .op_role h3,
   .op_meta h3 {
      font-size: 18px;
   }
}

/* Brand film — giant wordmark behind a video card
   -------------------------------------------------------------------------- */
.brandfilm {
   padding: 0;
   background-color: #fff;
   overflow: hidden;
}

.bf_intro {
   max-width: 720px;
   margin: 0 auto 36px;
}

.bf_kicker {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #0a66c2;
   margin-bottom: 14px;
}

.bf_kicker::before {
   content: "";
   width: 28px;
   height: 2px;
   background-color: #0a66c2;
   border-radius: 2px;
}

.bf_title {
   font-size: 36px;
   font-weight: 700;
   line-height: 1.2;
   color: #0b1b34;
   margin: 0 0 14px;
   letter-spacing: -0.5px;
}

.bf_title span {
   color: #0a66c2;
}

.bf_intro p {
   font-size: 16px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0;
}

.bf_stage {
   position: relative;
   width: 100%;
   margin: 0;
   aspect-ratio: 16 / 8;
   overflow: hidden;
   background-color: #0b1b34;
   isolation: isolate;
}

.bf_video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   overflow: hidden;
   z-index: 0;
}

.bf_video::after {
   content: "";
   position: absolute;
   inset: 0;
   background-image: linear-gradient(180deg, rgba(11, 27, 52, 0.55) 0%, rgba(11, 27, 52, 0.25) 35%, rgba(11, 27, 52, 0.55) 100%);
   pointer-events: none;
}

/* Left side: animated SVG mark, vertically centered */
.bf_topleft {
   position: absolute;
   top: -20px;
   left: -20px;
   /* transform: translateY(-50%); */
   z-index: 2;
   opacity: 0.2;
}

.bf_svg {
   width: clamp(180px, 20vw, 320px);
   height: clamp(180px, 20vw, 320px);
   filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.5));
}

.bf_svg .vbsvg-ripples circle {
   transform-box: fill-box;
   transform-origin: center;
   opacity: 0;
   animation: bf-ripple-soft 3.5s ease-out infinite;
}

.bf_svg .vbsvg-ripples circle:nth-child(1) {
   animation-delay: 0s;
}

.bf_svg .vbsvg-ripples circle:nth-child(2) {
   animation-delay: 1.2s;
}

.bf_svg .vbsvg-ripples circle:nth-child(3) {
   animation-delay: 2.4s;
}

@keyframes bf-ripple-soft {
   0% {
      transform: scale(0.5);
      opacity: 0.6;
   }

   100% {
      transform: scale(5);
      opacity: 0;
   }
}

/* Right side: vertical wordmark */
.bf_center {
   position: absolute;
   top: 50%;
   right: -0px;
   transform: translateY(-50%);
   margin: 0;
   z-index: 2;
   writing-mode: vertical-rl;
   text-orientation: mixed;
   font-family: 'Open Sans', sans-serif;
   font-size: clamp(40px, 7vw, 110px);
   font-weight: 800;
   line-height: 1;
   /* letter-spacing: clamp(2px, 0.5vw, 8px); */
   /* text-transform: uppercase; */
   color: transparent;
   -webkit-text-stroke: 2px rgba(255, 255, 255, 0.92);
   pointer-events: none;
   user-select: none;
   white-space: nowrap;
   letter-spacing: -5px;
   filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.5));
   opacity: .4;
}

/* Bottom-left label */
.bf_bottomleft {
   position: absolute;
   bottom: clamp(20px, 3vw, 36px);
   left: clamp(20px, 3vw, 40px);
   z-index: 2;
   color: #fff;
}

.bf_label_kicker {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   color: #00aeef;
   margin-bottom: 6px;
}

.bf_bottomleft p {
   margin: 0;
   font-size: clamp(16px, 1.4vw, 19px);
   font-weight: 700;
   color: #fff;
   letter-spacing: -0.1px;
   text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
}

/* Bottom-right action icons */
.bf_actions {
   position: absolute;
   bottom: clamp(20px, 3vw, 36px);
   right: clamp(20px, 3vw, 40px);
   z-index: 2;
   display: flex;
   gap: 12px;
}

.bf_actions a {
   width: 44px;
   height: 44px;
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.14);
   border: 1px solid rgba(255, 255, 255, 0.28);
   -webkit-backdrop-filter: blur(8px);
   backdrop-filter: blur(8px);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
   text-decoration: none;
   transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.bf_actions a:first-child i {
   transform: rotate(-45deg);
}

.bf_actions a:hover {
   background-color: #fff;
   color: #0a66c2;
   border-color: transparent;
   transform: translateY(-2px);
}

.bf_video video {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center;
}

@media (max-width: 991px) {
   .brandfilm {
      padding: 40px 0 60px;
   }

   .bf_title {
      font-size: 28px;
   }

   .bf_stage {
      aspect-ratio: 16 / 10;
   }

   .bf_tagline {
      font-size: 13px;
   }
}

@media (max-width: 600px) {
   .brandfilm {
      padding: 0;
   }

   .bf_stage {
      aspect-ratio: 4 / 5;
   }

   .bf_topleft {
      gap: 12px;
   }

   .bf_tagline {
      font-size: 12px;
   }

   .bf_actions a {
      width: 38px;
      height: 38px;
      font-size: 14px;
   }
}

/* Job Description page — banner meta, sticky info card, application form
   -------------------------------------------------------------------------- */
.innerbanner .jd_dept {
   display: inline-block;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.8px;
   text-transform: uppercase;
   color: #fff;
   padding: 6px 14px;
   border-radius: 100px;
   background-color: rgba(10, 102, 194, 0.6);
   border: 1px solid rgba(255, 255, 255, 0.18);
   margin-bottom: 14px;
}

.innerbanner .jd_facts {
   list-style: none;
   margin: 22px 0 28px;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   gap: 22px;
}

.innerbanner .jd_facts li {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   font-size: 14px;
   color: rgba(255, 255, 255, 0.78);
}

.innerbanner .jd_facts li i {
   color: #9cd5ff;
   font-size: 14px;
}

.jd_actions {
   display: flex;
   flex-wrap: wrap;
   gap: 14px;
   align-items: center;
}

.jd_apply_btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 28px;
   border-radius: 8px;
   background-image: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.4px;
   text-decoration: none;
   box-shadow: 0 14px 28px rgba(10, 102, 194, 0.36);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jd_apply_btn i {
   transition: transform 0.25s ease;
}

.jd_apply_btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 36px rgba(10, 102, 194, 0.5);
   color: #fff;
}

.jd_apply_btn:hover i {
   transform: translateX(4px);
}

.jd_back_btn {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 14px 22px;
   border-radius: 8px;
   border: 1px solid rgba(255, 255, 255, 0.28);
   color: #fff;
   font-size: 13.5px;
   font-weight: 600;
   text-decoration: none;
   transition: background 0.25s ease, border-color 0.25s ease;
}

.jd_back_btn:hover {
   background-color: rgba(255, 255, 255, 0.1);
   border-color: rgba(255, 255, 255, 0.5);
   color: #fff;
}

.jd_back_btn i {
   transition: transform 0.25s ease;
}

.jd_back_btn:hover i {
   transform: translateX(-3px);
}

/* Main body + sticky aside */
.jd_main {
   padding: 60px 0 40px;
   /* background-color: #fff; */
}

.jd_layout {
   display: grid;
   grid-template-columns: minmax(0, 1fr) 340px;
   gap: 48px;
   align-items: start;
}

.jd_body {
   min-width: 0;
   position: relative;
   padding-left: 35px;
}

.jd_body ul li {
   position: relative;
   padding-left: 35px;
   font-size: 15.5px;
   color: #3e4a5b;
   margin-bottom: 15px;
}

.jd_block {
   margin-bottom: 36px;
}

.jd_body ul li::before {
   content: "\f00c";
   font-family: 'FontAwesome';
   position: absolute;
   left: 0;
   top: 50%;
   transform: translateY(-50%);
   width: 22px;
   height: 22px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 10px;
}

.jd_block:last-child {
   margin-bottom: 0;
}

.jd_block h3 {
   font-size: 24px;
   font-weight: 700;
   line-height: 1.25;
   color: #0b1b34;
   margin: 0 0 14px;
   letter-spacing: -0.3px;
   display: inline-flex;
   align-items: center;
   gap: 12px;
   margin-top: 20px;
}

.jd_block h3::before {
   content: "";
   width: 32px;
   height: 3px;
   background-image: linear-gradient(90deg, #0a66c2 0%, #00aeef 100%);
   border-radius: 2px;
}

.jd_block>p {
   font-size: 15.5px;
   line-height: 1.75;
   color: #3e4a5b;
   margin: 0;
}

.jd_block>p strong {
   color: #0b1b34;
   font-weight: 700;
}

.jd_list {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 12px;
}

.jd_list li {
   position: relative;
   padding-left: 30px;
   font-size: 15px;
   line-height: 1.65;
   color: #3e4a5b;
}

.jd_list li::before {
   content: "\f00c";
   font-family: 'FontAwesome';
   position: absolute;
   left: 0;
   top: 4px;
   width: 20px;
   height: 20px;
   border-radius: 50%;
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 9px;
}

/* Sticky info card */
.jd_aside {
   position: sticky;
   top: 110px;
}

.jd_card {
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 18px;
   padding: 28px;
   box-shadow: 0 14px 36px rgba(11, 27, 52, 0.08);
}

.jd_card_kicker {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #0a66c2;
   margin-bottom: 18px;
}

.jd_card_kicker::before {
   content: "";
   width: 24px;
   height: 2px;
   background-color: #0a66c2;
   border-radius: 2px;
}

.jd_card_list {
   list-style: none;
   margin: 0 0 22px;
   padding: 0;
   display: flex;
   flex-direction: column;
   gap: 0;
}

.jd_card_list li {
   display: flex;
   align-items: center;
   gap: 14px;
   padding: 14px 0;
   border-bottom: 1px dashed #e6ecf3;
}

.jd_card_list li:last-child {
   border-bottom: none;
}

.jd_card_list li>i {
   flex: 0 0 auto;
   width: 38px;
   height: 38px;
   border-radius: 10px;
   background-color: rgba(10, 102, 194, 0.1);
   color: #0a66c2;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 16px;
}

.jd_card_list li>div {
   display: flex;
   flex-direction: column;
   gap: 2px;
   min-width: 0;
}

.jd_card_list li strong {
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   color: #5b6677;
}

.jd_card_list li span {
   font-size: 14px;
   font-weight: 600;
   color: #0b1b34;
}

.jd_card_apply {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
   padding: 14px 22px;
   border-radius: 8px;
   background-image: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   color: #fff;
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.4px;
   text-decoration: none;
   box-shadow: 0 10px 22px rgba(10, 102, 194, 0.28);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.jd_card_apply i {
   transition: transform 0.25s ease;
}

.jd_card_apply:hover {
   transform: translateY(-2px);
   box-shadow: 0 14px 28px rgba(10, 102, 194, 0.4);
   color: #fff;
}

.jd_card_apply:hover i {
   transform: translateX(4px);
}

.jd_share {
   margin-top: 22px;
   padding-top: 18px;
   border-top: 1px solid #e6ecf3;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
}

.jd_share>span {
   font-size: 12px;
   font-weight: 700;
   letter-spacing: 1.2px;
   text-transform: uppercase;
   color: #5b6677;
}

.jd_share>div {
   display: flex;
   gap: 8px;
}

.jd_share a {
   width: 34px;
   height: 34px;
   border-radius: 50%;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   color: #0a66c2;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   text-decoration: none;
   transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.jd_share a:hover {
   background: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   border-color: transparent;
   color: #fff;
   transform: translateY(-2px);
}

/* Apply form section */
.jd_apply {
   padding: 50px 0 80px;
   background-color: #fff;
}

.jd_apply_head {
   max-width: 780px;
   margin: 0 auto 36px;
   text-align: center;
}

.jd_apply_head .jd_card_kicker {
   justify-content: center;
}

.jd_apply_head h2 {
   font-size: 36px;
   font-weight: 700;
   line-height: 1.2;
   color: #0b1b34;
   margin: 0 0 14px;
   letter-spacing: -0.5px;
}

.jd_apply_head h2 span {
   color: #0a66c2;
}

.jd_apply_head>p {
   font-size: 15.5px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0;
}

.jd_apply_head>p strong {
   color: #0a66c2;
}

.jd_form {
   max-width: 880px;
   margin: 0 auto;
   padding: 44px;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 18px;
   box-shadow: 0 14px 40px rgba(11, 27, 52, 0.06);
   display: flex;
   flex-direction: column;
   gap: 22px;
}

.jd_form_row {
   display: grid;
   grid-template-columns: repeat(2, 1fr);
   gap: 22px;
}

/* File upload */
.jd_file .ctc_field_label {
   margin-bottom: 8px;
}

.jd_file_drop {
   position: relative;
   border: 2px dashed #d8dfe8;
   border-radius: 12px;
   padding: 28px 24px;
   background-color: #f7faff;
   text-align: center;
   transition: border-color 0.25s ease, background 0.25s ease;
}

.jd_file_drop:hover {
   border-color: #0a66c2;
   background-color: #fff;
}

.jd_file_drop i {
   display: block;
   font-size: 32px;
   color: #0a66c2;
   margin-bottom: 10px;
}

.jd_file_drop p {
   margin: 0 0 4px;
   font-size: 14.5px;
   color: #0b1b34;
}

.jd_file_drop p strong {
   color: #0a66c2;
   font-weight: 700;
}

.jd_file_drop>span {
   font-size: 12.5px;
   color: #5b6677;
}

.jd_file_drop input[type="file"] {
   position: absolute;
   inset: 0;
   width: 100%;
   height: 100%;
   opacity: 0;
   cursor: pointer;
}

@media (max-width: 991px) {
   .jd_actions {
      gap: 10px;
   }

   .jd_apply_btn,
   .jd_back_btn {
      padding: 12px 20px;
      font-size: 13px;
   }

   .jd_main {
      padding: 40px 0 20px;
   }

   .jd_layout {
      grid-template-columns: 1fr;
      gap: 32px;
   }

   .jd_aside {
      position: static;
      order: 2;
   }

   .jd_block h3 {
      font-size: 22px;
   }

   .jd_apply {
      padding: 40px 0 60px;
   }

   .jd_apply_head h2 {
      font-size: 28px;
   }

   .jd_form {
      padding: 32px 24px;
   }

   .innerbanner .jd_facts {
      gap: 14px;
   }
}

@media (max-width: 600px) {
   .jd_actions {
      width: 100%;
   }

   .jd_apply_btn,
   .jd_back_btn {
      flex: 1 1 auto;
      justify-content: center;
   }

   .jd_card {
      padding: 22px;
   }

   .jd_form {
      padding: 26px 20px;
   }

   .jd_form_row {
      grid-template-columns: 1fr;
   }

   .jd_apply_head h2 {
      font-size: 24px;
   }

   .jd_file_drop {
      padding: 22px 18px;
   }

   .jd_share {
      flex-direction: column;
      align-items: flex-start;
   }
}

/* FAQ — 2-column split: clickable questions + active answer panel
   -------------------------------------------------------------------------- */
.faq2 {
   padding: 20px 0 80px;
   /* background-color: #fff; */
}

.faq2_head {
   max-width: 720px;
   margin: 0 auto 40px;
   text-align: center;
}

.faq2_kicker {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   font-size: 11px;
   font-weight: 700;
   letter-spacing: 2px;
   text-transform: uppercase;
   color: #0a66c2;
   margin-bottom: 14px;
}

.faq2_kicker::before {
   content: "";
   width: 28px;
   height: 2px;
   background-color: #0a66c2;
   border-radius: 2px;
}

.faq2_head h2 {
   font-size: 36px;
   font-weight: 700;
   line-height: 1.2;
   color: #0b1b34;
   margin: 0 0 14px;
   letter-spacing: -0.5px;
}

.faq2_head h2 span {
   color: #0a66c2;
}

.faq2_head>p {
   font-size: 16px;
   line-height: 1.7;
   color: #5b6677;
   margin: 0;
}

.faq2_layout {
   display: grid;
   grid-template-columns: 1fr 1.2fr;
   gap: 24px;
   align-items: start;
}

/* Hidden inputs are still positioned, so push them out */
.faq2_layout>input[type="radio"] {
   position: absolute;
   opacity: 0;
   pointer-events: none;
}

.faq2_questions {
   display: flex;
   flex-direction: column;
   gap: 10px;
}

.faq2_item {
   display: grid;
   grid-template-columns: auto 1fr auto;
   align-items: center;
   gap: 16px;
   padding: 18px 22px;
   background-color: #fff;
   border: 1px solid #e6ecf3;
   border-radius: 14px;
   cursor: pointer;
   transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq2_item:hover {
   border-color: #b9c4d4;
   transform: translateX(3px);
}

.faq2_num {
   font-size: 18px;
   font-weight: 800;
   letter-spacing: 0.5px;
   color: #5b6677;
   line-height: 1;
}

.faq2_q {
   font-size: 15px;
   font-weight: 600;
   color: #0b1b34;
   line-height: 1.4;
}

.faq2_item>i {
   color: #b9c4d4;
   font-size: 14px;
   transition: color 0.3s ease, transform 0.3s ease;
}

/* Active question state — uses :has() to detect which radio is checked */
.faq2_layout:has(#faq2-1:checked) .faq2_item[data-faq="1"],
.faq2_layout:has(#faq2-2:checked) .faq2_item[data-faq="2"],
.faq2_layout:has(#faq2-3:checked) .faq2_item[data-faq="3"],
.faq2_layout:has(#faq2-4:checked) .faq2_item[data-faq="4"],
.faq2_layout:has(#faq2-5:checked) .faq2_item[data-faq="5"] {
   background-image: linear-gradient(135deg, #0a66c2 0%, #00aeef 100%);
   border-color: transparent;
   transform: translateX(3px);
   box-shadow: 0 14px 30px rgba(10, 102, 194, 0.28);
}

.faq2_layout:has(#faq2-1:checked) .faq2_item[data-faq="1"] .faq2_num,
.faq2_layout:has(#faq2-2:checked) .faq2_item[data-faq="2"] .faq2_num,
.faq2_layout:has(#faq2-3:checked) .faq2_item[data-faq="3"] .faq2_num,
.faq2_layout:has(#faq2-4:checked) .faq2_item[data-faq="4"] .faq2_num,
.faq2_layout:has(#faq2-5:checked) .faq2_item[data-faq="5"] .faq2_num {
   color: rgba(255, 255, 255, 0.7);
}

.faq2_layout:has(#faq2-1:checked) .faq2_item[data-faq="1"] .faq2_q,
.faq2_layout:has(#faq2-2:checked) .faq2_item[data-faq="2"] .faq2_q,
.faq2_layout:has(#faq2-3:checked) .faq2_item[data-faq="3"] .faq2_q,
.faq2_layout:has(#faq2-4:checked) .faq2_item[data-faq="4"] .faq2_q,
.faq2_layout:has(#faq2-5:checked) .faq2_item[data-faq="5"] .faq2_q {
   color: #fff;
}

.faq2_layout:has(#faq2-1:checked) .faq2_item[data-faq="1"]>i,
.faq2_layout:has(#faq2-2:checked) .faq2_item[data-faq="2"]>i,
.faq2_layout:has(#faq2-3:checked) .faq2_item[data-faq="3"]>i,
.faq2_layout:has(#faq2-4:checked) .faq2_item[data-faq="4"]>i,
.faq2_layout:has(#faq2-5:checked) .faq2_item[data-faq="5"]>i {
   color: #fff;
   transform: translateX(4px);
}

/* Right column: answer panels */
.faq2_answers {
   position: sticky;
   top: 110px;
   padding: 38px;
   background-image: linear-gradient(160deg, #f5f8fd 0%, #ffffff 100%);
   border: 1px solid #e6ecf3;
   border-radius: 22px;
   box-shadow: 0 16px 40px rgba(11, 27, 52, 0.06);
   min-height: 360px;
}

.faq2_panel {
   display: none;
   animation: faq2_fade 0.4s ease;
}

.faq2_layout:has(#faq2-1:checked) .faq2_panel[data-faq="1"],
.faq2_layout:has(#faq2-2:checked) .faq2_panel[data-faq="2"],
.faq2_layout:has(#faq2-3:checked) .faq2_panel[data-faq="3"],
.faq2_layout:has(#faq2-4:checked) .faq2_panel[data-faq="4"],
.faq2_layout:has(#faq2-5:checked) .faq2_panel[data-faq="5"] {
   display: block;
}

.faq2_num_lg {
   display: inline-block;
   font-size: 64px;
   font-weight: 900;
   line-height: 0.9;
   letter-spacing: -2px;
   background-image: linear-gradient(135deg, #e8f1fc 0%, #e8f1fc 100%);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
   margin-bottom: 18px;
}

.faq2_panel h3 {
   font-size: 24px;
   font-weight: 700;
   line-height: 1.3;
   color: #0b1b34;
   margin: 0 0 16px;
   letter-spacing: -0.3px;
}

.faq2_panel p {
   font-size: 15.5px;
   line-height: 1.75;
   color: #3e4a5b;
   margin: 0;
}

@keyframes faq2_fade {
   from {
      opacity: 0;
      transform: translateY(8px);
   }

   to {
      opacity: 1;
      transform: translateY(0);
   }
}

@media (max-width: 991px) {
   .faq2 {
      padding: 10px 0 60px;
   }

   .faq2_head h2 {
      font-size: 28px;
   }

   .faq2_layout {
      grid-template-columns: 1fr;
      gap: 18px;
   }

   .faq2_answers {
      position: static;
      padding: 30px 26px;
   }

   .faq2_num_lg {
      font-size: 52px;
   }

   .faq2_panel h3 {
      font-size: 20px;
   }
}

@media (max-width: 600px) {
   .faq2_item {
      padding: 16px 18px;
      gap: 12px;
   }

   .faq2_q {
      font-size: 14px;
   }

   .faq2_answers {
      padding: 26px 22px;
   }

   .faq2_num_lg {
      font-size: 44px;
   }
}

/* Breadcrumb / Pagination
   -------------------------------------------------------------------------- */
.innerbanner .breadcrumb {
   margin: 0 0 18px;
   padding: 0;
}

.innerbanner {
   padding: 70px 0 0px;
   /* min-height: 590px; */
}

.videobox-svg {
   top: -115px;
}

/* Inner Banner SVG — simple animation (about page)
   -------------------------------------------------------------------------- */
.innerbanner .videobox-svg .vbsvg-particles {
   display: none;
}

.innerbanner .videobox-svg .vbsvg-ripples circle {
   transform-box: fill-box;
   transform-origin: center;
   opacity: 0;
   animation: vbsvg-ripple-soft 3.5s ease-out infinite;
}

.innerbanner .videobox-svg .vbsvg-ripples circle:nth-child(1) {
   animation-delay: 0s;
}

.innerbanner .videobox-svg .vbsvg-ripples circle:nth-child(2) {
   animation-delay: 1.2s;
}

.innerbanner .videobox-svg .vbsvg-ripples circle:nth-child(3) {
   animation-delay: 2.4s;
}

@keyframes vbsvg-ripple-soft {
   0% {
      transform: scale(0.5);
      opacity: 0.6;
   }

   100% {
      transform: scale(5);
      opacity: 0;
   }
}

.innerbanner .breadcrumb ul {
   list-style: none;
   margin: 0;
   padding: 0;
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   gap: 8px;
}

.innerbanner .breadcrumb li {
   position: relative;
   font-family: 'Open Sans', sans-serif;
   font-size: 14px;
   font-weight: 500;
   line-height: 1.4;
   color: #fff;
   display: inline-flex;
   align-items: center;
}

.innerbanner .breadcrumb li+li::before {
   content: "/";
   margin-right: 8px;
   color: #fff;
   font-weight: 400;
}

.innerbanner .breadcrumb li a {
   color: rgb(101, 213, 255);
   text-decoration: none;
   transition: color 0.25s ease;
}

.innerbanner .breadcrumb li a:hover,
.innerbanner .breadcrumb li a:focus {
   color: rgb(101, 213, 255);
   text-decoration: underline;
}

.innerbanner .breadcrumb li.active {
   color: #fff;
   font-weight: 600;
}

main.main_section .mFooter {
   background: #080b16;
   border-top: 3px solid #00aeef;
   border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

main.main_section .mFooter h3 {
   color: #00aeef;
}

main.main_section .mFooter p {
   color: rgba(237, 242, 253, 0.68);
}

main.main_section .mFooter .grid a {
   color: rgba(237, 242, 253, 0.68);
}

main.main_section .mFooter .grid a:hover {
   color: #ffffff;
   opacity: 1;
}

main.main_section .copy {
   color: rgba(237, 242, 253, 0.68);
   border-top-color: rgba(255, 255, 255, 0.1);
}

/* Footer logo is built for a light background — keep it readable on dark */
main.main_section .mFooter a.footer_logo img {
   /* filter: brightness(0) invert(1); */
   border-radius: 100%;
}

@media (max-width: 600px) {
   .innerbanner .breadcrumb {
      margin-bottom: 12px;
   }

   .innerbanner .breadcrumb li {
      font-size: 13px;
   }
}