 :root {
     --color-navy: #011547;
     --color-navy-dark: #020b28;
     --color-orange: #ff5a24;
     --color-orange-dark: #9D3210;
     --color-light: #eef2f3;
     --color-text-muted: #dce5ff;
     --fs-section-title: clamp(1.8rem, 4vw, 2.5rem);
     --fs-hero-title: clamp(3rem, 5vw, 5rem);
     --radius-pill: 50px;
     --theme-color-main: var(--color-orange);
     --theme-color-sec: var(--color-navy);
     --primary: var(--color-orange);
 }

 body {
     font-family: Arial, Helvetica, sans-serif;
     color: var(--color-navy);
     font-size: 16px;
 }

 a {
     color: var(--color-navy);
 }

 a:hover {
     color: var(--color-orange-dark);
 }

 .fw-bold {
     font-weight: 600;
 }

 .hero-bg {
     position: relative;
     background: var(--color-navy);
     overflow: hidden;
     padding-top: 110px;
     border-bottom: 3px solid var(--color-orange);
 }

 .form-control,
 .form-select {
     padding: 10px 30px !important;
     border-radius: 50rem !important;
 }

 .section-tag {
     display: flex;
     align-items: center;
     gap: 15px;
     color: #fff;
     font-weight: 600;
     letter-spacing: .5px;
 }

 .section-tag .dash {
     height: 2px;
     width: 45px;
     background: var(--color-orange-dark);
     display: inline-block;
 }

 .section-tag.section-tag-center {
     justify-content: center;
 }

 .section-title {
     font-size: var(--fs-section-title);
     font-weight: 600;
     line-height: 1.15;
     color: var(--color-navy);
 }

 .section-title.text-white {
     color: #fff;
 }

 .btn-theme {
     background: var(--color-orange-dark);
     color: #fff;
     border: none;
     transition: background-color .15s ease;
     padding: 12px 30px;
     font-weight: 600;
     text-transform: uppercase;
 }

 .btn-theme:hover,
 .btn-theme:focus {
     background: var(--color-orange);
     color: #fff;
 }

 .btn-theme svg {
     width: 16px;
     height: 16px;
     stroke: #fff;
     fill: none;
     stroke-width: 2.5;
 }

 .badge-outline {
     border: 2px solid rgba(255, 255, 255, .6);
     color: #fff;
     letter-spacing: .5px;
 }

 .list-check {
     display: flex;
     align-items: center;
     gap: 10px;
     font-weight: 600;
     color: var(--color-navy);
 }

 .list-check svg {
     width: 16px;
     height: 16px;
     stroke: var(--color-orange);
     fill: none;
     stroke-width: 2.5;
     flex-shrink: 0;
 }

 .hero {
     position: relative;
     color: #fff;
     overflow: hidden;
     background: var(--color-navy);
 }

 .hero p {
     color: var(--color-text-muted);
 }

 .hero-content {
     position: relative;
     z-index: 2;
 }

 .img-area {
     background: url(../images/hero-image.webp) right bottom/contain no-repeat;
 }

 .display-5 {
     font-size: 2.9rem !important;
 }

 @media (max-width: 992px) {
     .img-area {
         background: none;
     }
 }

 .about-feature-card {
     display: flex;
     flex-wrap: wrap;
     gap: 16px 32px;
     background: var(--color-light);
     border-radius: 16px;
     border-right: 4px solid var(--color-orange);
     border-left: 4px solid var(--color-orange);
     box-shadow: 0 15px 35px rgba(1, 21, 71, .18);
     padding: 22px 28px;
 }

 .about-feature-item {
     display: flex;
     align-items: flex-start;
     gap: 12px;
     flex: 1 1 170px;
     min-width: 0;
 }

 .about-feature-icon {
     width: 36px;
     height: 36px;
     object-fit: contain;
     flex-shrink: 0;
 }

 .about-feature-item h5 {
     color: var(--color-navy);
     font-weight: 600;
     margin-bottom: 4px;
     font-size: 1rem;
     white-space: nowrap;
 }

 .services-section {
     background: var(--color-navy-dark);
 }

 .service-card {
     background: var(--color-light);
     min-height: 130px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
 }

 .service-content {
     color: var(--color-navy);
     font-weight: 600;
     text-align: left;
 }

 .service-icon {
     width: 65px;
     height: 65px;
     flex-shrink: 0;
     background: var(--color-orange);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .service-icon svg {
     width: 32px;
     height: 32px;
     stroke: #fff;
     fill: none;
     stroke-width: 2;
 }

 .header a.logo,
 .header li a {
     text-decoration: none;
     color: #000 !important;
     display: block;
 }

 .header li a.active {
     color: var(--theme-color-sec) !important;
     border-top: 2px solid var(--theme-color-main);
 }

 .header {
     position: fixed;
     z-index: 1000;
     background: linear-gradient(90deg, rgba(249, 221, 207, 1) 0%, rgba(255, 245, 241, 1) 40%);
     width: 100%;
 }

 .header ul {
     margin: 10px 0 0;
     padding: 0;
     list-style: none;
     overflow: hidden;
 }

 .header li a {
     padding: 12px 20px;
     text-transform: uppercase;
     font-weight: 500;
 }

 .header .menu-btn:hover,
 .header li:hover a {
     color: var(--primary) !important;
 }

 .header a.logo {
     float: left;
     font-size: 2em;
     margin-top: 5px;
 }

 .header a:hover.logo {
     color: #000;
 }

 .header .menu {
     clear: both;
     max-height: 0;
     transition: max-height .2s ease-out;
 }

 .header .menu-icon {
     cursor: pointer;
     display: inline-block;
     float: right;
     padding: 28px 20px;
     position: relative;
     user-select: none;
 }

 .header .menu-icon .navicon {
     background: var(--theme-color-sec);
     display: block;
     height: 2px;
     position: relative;
     transition: background .2s ease-out;
     width: 18px;
 }

 .header .menu-icon .navicon:after,
 .header .menu-icon .navicon:before {
     background: var(--theme-color-sec);
     content: "";
     display: block;
     height: 100%;
     position: absolute;
     transition: .2s ease-out;
     width: 100%;
 }

 .header .menu-icon .navicon:before {
     top: 5px;
 }

 .header .menu-icon .navicon:after {
     top: -5px;
 }

 .header .menu-btn {
     display: none;
 }

 .header .menu-btn:checked~.menu {
     max-height: 260px;
     padding-bottom: 20px;
 }

 .header .menu-btn:checked~.menu-icon .navicon {
     background: 0 0;
 }

 .header .menu-btn:checked~.menu-icon .navicon:before {
     transform: rotate(-45deg);
 }

 .header .menu-btn:checked~.menu-icon .navicon:after {
     transform: rotate(45deg);
 }

 .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after,
 .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before {
     top: 0;
 }

 @media(min-width:992px) {
     .header li {
         float: left;
     }

     .header li a {
         padding: 12px 30px;
     }

     .header .menu {
         clear: none;
         float: right;
         max-height: none;
     }

     .header .menu-icon {
         display: none;
     }
 }

 .companies-section {
     background: var(--color-light);
 }

 .bg-jobs {
     background: #fff;
     box-shadow: 0 6px 24px rgba(7, 27, 80, .08);
 }

 .text-theme {
     color: var(--color-orange);
 }

 .footer {
     background: var(--color-navy-dark) !important;
 }

 .footer a {
     color: #fff;
     text-decoration: none;
     opacity: .75;
     transition: opacity .15s ease;
 }

 .footer a:hover {
     opacity: 1;
     color: var(--color-orange);
 }

 label.error {
     color: red;
     font-size: 1rem;
     display: block;
     margin-top: 5px;
 }

 label.error.fail-alert {
     border: 2px solid red;
     border-radius: 4px;
     line-height: 1;
     padding: 2px 0 6px 6px;
     background: #ffe6eb;
 }

 input.valid.success-alert {
     border: 2px solid #4caf50;
     color: green;
 }

 input.error,
 textarea.error {
     border: 1px solid red !important;
     font-weight: 300;
     color: red;
 }

 .alert {
     border: 1px solid #0A3622;
     border-radius: 6px;
     background: #d1e7dd;
     padding: 10px;
 }

 .alert-success {
     color: #0a3622;
 }

 @media (min-width: 1024px) and (max-width: 1120px) {
     .img-area {
         background: url("../images/hero-image.webp") right bottom / 67% no-repeat;
     }
 }

 .view-jobs {
     background: linear-gradient(90deg, rgba(249, 221, 207, 1) 0%, rgb(228 185 167) 40%);
     padding: 10px;
     font-size: 14px;
     font-weight: 500;
 }