:root {
    --primary: #F07F1B;
    --secondary: #E76C00;
    --bg: rgba(240, 127, 27, 0.1);
    --body: #2B2A28;
    --text: #595753;
    --border: #D4D4D4;
    --white: #ffffff;
    --black: #000000;
    --font-family: "Roboto", system-ui;
    --font-body: 16px;
    --font-text: 18px;
    --h1: 40px;
    --h2: 36px;
    --h3: 24px;
    --h4: 22px;
    --line-height: 140%;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--text);
    font-size: var(--font-body);
    line-height: var(--line-height);
}

.content-main ol,
.content-main ul {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.content-main ol ol,
.content-main ul ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

a {
    text-decoration: none;
    color: var(--primary);
}

video {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 600;
    color: var(--body);
    line-height: var(--line-height);
}

.btn {
    padding: 14px 25px;
}

.btn-primary {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

.btn-primary:hover {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
    border-color: var(--secondary) !important;
}

img {
    max-width: 100%;
}

/* Section */
.section-heading h2 {}

/* Header */
.site-header {
    position: relative;
    z-index: 99;
}

.header-navigation a {
    color: var(--text);
}

.mobile-menu.btn {
    padding: 10px 10px;
    background-color: rgba(240, 127, 27, 0.1);
    border-radius: 4px;
    color: var(--primary);
    outline: none !important;
    border-width: 0px !important;
}

.mobile-menu.btn:active {
    background-color: var(--primary);
    color: var(--white);
}

.mobile-menu svg {
    width: 30px;
}

/* Hero Section */
.hero-section {
    background-color: var(--bg);
}

.hero_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.hero_content {
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero_content h1 {
    font-size: var(--h1);
    line-height: var(--line-height);
    color: var(--body);
    font-weight: 700;
}

.hero_content p {
    font-size: var(--h4);
    line-height: 150%;
}

.subscription {
    background-color: var(--white);
    display: flex;
    align-items: top;
    padding: 12px;
    border-radius: 8px;
    gap: 15px;
}

.subscription>.btn {
    min-width: 150px;
}

.subscription .field {
    flex-grow: 1;
}

.field-input {
    padding: 15px 15px;
    border-radius: 4px;
    border: 1px solid var(--border);
    width: 100%;
    outline: none;
    box-shadow: none;
}

.field-input:focus-visible,
.field-input:focus {
    border-color: var(--primary);
}

/* Expertise */
.expertise_inner {
    max-width: 414px;
    margin: 0 auto;
}

.expertise_items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0px;
    width: 100%;
    padding: 0px 32px;
    text-align: center;
    gap: 30px 15px;
}

.expertise_item.wide_title {
    width: 100%;
}

.expertise_item.wide_title h3 {
    margin-bottom: 0px;
}

.expertise_items .expertise_item {
    display: flex;
    flex-direction: column;
    color: var(--body);
    align-items: center;
    gap: 10px;
    width: calc(100%* 1 / 2 - 8px);
}

.expertise_items .expertise_item.wide_title {
    width: 100%;
}

.expertise_icon {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.expertise_title {
    width: 100%;
    max-width: 130px;
}

.expertise_inner {
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.section-expertise .swiper-button-next,
.section-expertise .swiper-button-prev {
    font-size: 30px;
    color: var(--primary);
}

.section-expertise .swiper-button-next::after,
.section-expertise .swiper-button-prev::after {
    font-size: inherit;
    color: currentColor;
}

/* CTA */
.section-cta {
    background-color: var(--primary);
    color: var(--white);
}

.cta-content p {
    font-size: var(--h4);
    line-height: 150%;
    margin-bottom: 0px;
}

/* Partners */
.partnes_leadrs {
    display: flex;
    flex-wrap: wrap;
}

.partnes_leadrs>img {
    filter: grayscale(1);
    width: calc(100%* 1 / 3 - 10px);
    margin-right: 10px;
    margin-bottom: 20px;
    transition: all ease 300;
}

.partnes_leadrs>img:hover {
    filter: grayscale(0);
}

.hero_image video {
    width: 100%;
    border-radius: 8px;
}

.counter-item .counter-icon {
    margin-bottom: 15px;
}

.counter-item .counter {
    font-size: var(--h2);
    color: var(--primary);
}

.site-footer {
    background-color: #09090B;
}

.footer-item h3 {
    font-size: var(--h4);
    margin-bottom: 10px;
}

.footer-menu {
    list-style: none;
    padding: 0px;
    margin: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-menu>li, .footer-menu>li a {
    color: var(--white);
}
.copyright-credit .border-top {
    border-top-color: #27272a !important;
}
.copyright-credit p {
    color: rgba(255, 255, 255, 0.45);
}
.phone-error {
    color: red;
    display: none;
}

@media screen and (min-width: 767px) {
    .mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --font-body: 16px;
        --font-text: 18px;
        --h1: 30px;
        --h2: 28px;
        --h3: 24px;
        --h4: 18px;
        --line-height: 140%;
    }

    .site-navigation {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0px;
        background-color: #fff;
        width: 100% !important;
        padding: 25px;
        box-shadow: 0px 5px 4px 0px rgba(0, 0, 0, 0.05);
    }

    .site-navigation.active {
        display: flex !important;
    }

    .site-logo img {
        max-width: 165px;
    }

    .hero-section {
        padding-top: 15px;
    }

    .section-expertise .section-heading {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero_inner {
        flex-direction: column;
        padding: 20px;
        padding-bottom: 0px;
    }

    .subscription>.btn {
        min-width: 125px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero_image video {
        width: 100%;
        height: auto;
    }

    .section-partner .hero_inner {
        gap: 10px;
    }

    .expertise_items {
        padding: 0px 20px;
    }
}

/* Layout Adjustments */
.expertise_inner.tl-desktop {
    max-width: fit-content;
    width: 100%;
}

.tl-desktop .expertise_items {
    justify-content: flex-start;
    gap: 30px;
    margin-bottom: 40px;
}

.tl-desktop .expertise_items:last-child {
    margin-bottom: 0px;
}

.tl-desktop .expertise_items .expertise_item {
    width: auto;
}

.tl-desktop .expertise_items .expertise_item.wide_title {
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
}

.tl-desktop.v3 .expertise_items {
    justify-content: center;
}

.tl-desktop.v3 .expertise_items .expertise_item.wide_title {
    align-items: center;
}

.expertise_inner.tl-desktop-v4 {
    width: 100%;
    max-width: fit-content;
    padding-left: 50px;
    padding-right: 50px;
}

.tl-desktop-v4 .expertise_items {
    background-color: #fbfbfb;
    padding: 30px;
    border-radius: 20px;
}

@media screen and (min-width: 768px) {
    .tl-desktop-v4 .expertise_item {
        width: auto;
    }

    .tl-desktop-v4 .expertise_items {
        justify-content: center;
        gap: 30px 30px;
    }

    .tl-desktop-v4 .expertise_title {
        min-height: 45px;
        max-width: 145px;
    }
}

@media screen and (max-width: 767px) {
    .tl-desktop-v4 .expertise_items {
        padding: 0px;
        background-color: transparent;
    }
}

/* Modal styles */
.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    padding: 60px 20px;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease;
}

.modal.show {
    visibility: visible;
    opacity: 1;
}

.modal .modal-header {
    padding-left: 0px;
    padding-right: 0px;
    border-bottom: 0px;
    font-size: 20px;
    color: var(--black);
    text-align: left;
}

.modal-content label {
    text-align: left;
    width: 100%;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.modal.show .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    color: #333;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #555;
}

.loader {
    border: 4px solid #f3f3f3;
    border-radius: 50%;
    border-top: 4px solid var(--primary);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 40px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.modal input[type="text"],
.modal input[type="email"],
.modal input[type="tel"],
.modal input[type="number"] {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
}

.modal input[readonly] {
    background-color: rgba(0, 0, 0, 0.08);
    border-color: #ddd !important;
}

.modal input[type="text"]:focus,
.modal input[type="email"]:focus,
.modal input[type="tel"]:focus,
.modal input[type="number"]:focus {
    border-color: var(--primary);
    outline: none;
}

.modal button {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 15px;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.modal button:hover {
    background-color: var(--secondary);
}

@media screen and (max-width: 767px) {
    .modal .modal-header {
        font-size: 18px;
    }
}

.hero-section.inner-page {
    min-height: 250px;
    display: flex;
    align-items: center;
}

.hero-section.inner-page .hero_content {
    max-width: 100%;
    text-align: center;
}

.who-are-we img {
    border-radius: 10px;
}

.tagline {
    background-color: #f5f5f5;
    display: inline-block;
    padding: 8px 20px 7px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 99px;
    line-height: normal;
    margin-bottom: 15px;
}

.who-are-we h2 {
    margin-bottom: 15px;
}

.who-are-we p {
    line-height: 170%;
}

.team-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
}

.team-image {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 10px;
}

.team-image img {
    width: 100%;
}

.team-socials {
    position: absolute;
    bottom: 15px;
    left: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    transition: all ease 300ms;
    transform: translateY(100px);
}

.team-card:hover .team-socials {
    transform: translateY(0px);
}

.team-socials>a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: #fff;
    border-radius: 4px;
}

.team-socials>a svg,
.team-socials>a img {
    width: 20px;
    height: 20px;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.team-card p {
    margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
    .hero-section.inner-page {
        padding: 20px;
        min-height: 160px;
    }

    .our-team .row {
        margin-left: -10px;
        margin-right: -10px;
    }

    .our-team h3 {
        font-size: 20px;
    }

    .our-team p {
        font-size: 14px;
    }
}

/* Profile Page */
.profile-card,
.profile-skills {
    background-color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.profile-card h1 {
    margin-bottom: 0px;
    color: #1a1a1a;
}

.profile-card h2 {
    font-size: 1.5rem;
    color: #6e737b;
}

.profile-card p {
    font-size: 1.125rem;
    color: #6e737b;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 640px;
    line-height: 160%;
}

.profile-card img {
    background-color: #cdd0da;
    border-radius: 15px;
    width: 100%;
}

.swiper.gallery-thumb .swiper-slide {
    background-color: #202020;
    border-radius: 6px;
}

.swiper.gallery-thumb img {
    border-radius: 6px;
    transition: all ease 300ms;
}

.swiper.gallery-thumb .swiper-slide:not(.swiper-slide-thumb-active) img {
    opacity: 0.3;
}

.swiper.gallery-slider {
    margin-bottom: 10px;
    border-radius: 20px;
}

.swiper.gallery-slider .swiper-slide {
    border-radius: 20px;
    overflow: hidden;
}

.swiper.gallery-slider .swiper-button-next,
.swiper.gallery-slider .swiper-button-prev {
    background-color: #202020;
    color: #fff;
    font-size: 18px;
    width: 42px;
    height: 42px;
    border-radius: 6px;
    border: 2px solid;
}

.swiper.gallery-slider .swiper-button-next::after,
.swiper.gallery-slider .swiper-button-prev::after {
    color: currentColor;
    font-size: inherit;
}

.skills-card {
    display: flex;
    gap: 30px;
}

.skill-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 8px 15px;
    border: 1px solid var(--primary);
    border-radius: 6px;
    background-color: #ffffff;
    color: var(--primary);
}

.skill-item>i {
    color: var(--primary);
    font-size: 20px;
}

.contact-info {
    display: flex;
    gap: 15px;
}

.contact-info i {
    font-size: 24px;
    min-width: 25px;
    text-align: center;
}

.info-item {
    display: flex;
    gap: 10px;
}

.company-info .contact-info {
    width: calc(100%* 1 / 3 - 16px);
    align-items: flex-start;
}

.company-info .contact-info .info-item {
    flex-direction: column;
    gap: 2px;
}

.company-info .info-item label {
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .profile-card {
        flex-direction: column;
        padding: 20px;
        gap: 35px;
    }

    .profile-skills {
        padding: 20px;
    }

    .skills-card {
        gap: 10px;
    }

    .skill-item {
        padding: 8px 10px;
    }

    .company-info .contact-info {
        width: calc(100%* 1 / 1 - 0px);
        align-items: flex-start;
    }
}

/* 2025 */
.testimonials_inner {
    width: 100%;
    position: relative;
    max-width: fit-content;
    padding-left: 50px;
    padding-right: 50px;
}
.testimonials_inner .swiper-button-next,
.testimonials_inner .swiper-button-prev {
    font-size: 30px;
    color: var(--primary);
}
.testimonials_inner .swiper-button-next::after,
.testimonials_inner .swiper-button-prev::after {
    font-size: inherit;
    color: currentColor;
}
.testimonial_item {
    position: relative;
    background-color: white;
    padding: 0px;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 30px;
    border-radius: 20px;
    background-position: center;
    background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* min-height: 460px; */
}
.testimonial_content {
    /* background: linear-gradient(to bottom, transparent 0%, rgb(0 0 0 / 75%) 30%, rgb(0 0 0 / 75%) 100%); */
    padding: 30px;
    color: var(--body);
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.testimonial_content p {
    font-style: italic;
}
.testimonial_footer {
    margin-top: 20px;
}
.testimonial_image img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 999px;
}
.testimonial_item h3 {
    font-size: 18px;
    margin-bottom: 0px;
}
.testimonial_footer p {
    margin-bottom: 0px;
    font-size: 14px;
    opacity: 0.8;
    font-weight: 400;
    font-style: normal;
}

/* Modal */
.modal.show {
    z-index: 1060;
}
#explore-plans .modal-header {
    justify-content: space-between;
    padding: 0px;
}
#explore-plans .btn-close {
    width: auto;
    background-color: transparent;
    margin: 0px;
}
#explore-plans .modal-body {
    text-align: left;
    padding: 30px 0px;
}
#explore-plans .modal-footer {
    padding: 15px 0 0;
    justify-content: flex-end;
    gap: 15px;
}
#explore-plans .modal-footer .btn {
    margin: 0px;
    width: auto;
}
#explore-plans .btn {
    outline: none !important;
    box-shadow: none !important;
}
@media only screen and (max-width: 767px) {
    #explore-plans {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}
.our-services .expertise_items {
    padding: 0px;
    margin-top: 30px;
    justify-content: flex-start;
    gap: 30px;
}
.our-services .expertise_items .expertise_item {
    width: auto;
}

.tl-swiper-button-next, .tl-swiper-button-prev {
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: calc(var(--swiper-navigation-size) / 44 * 27);
    height: var(--swiper-navigation-size);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
}
.tl-swiper-button-next:after, .tl-swiper-button-prev:after {
    content: 'next';
    font-family: swiper-icons;
    font-size: inherit;
    color: inherit;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}
.tl-swiper-button-prev:after {
    content: 'prev';
}
.tl-swiper-button-next {
    right: var(--swiper-navigation-sides-offset, 10px);
    left: auto;
}
.tl-swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

.professional_item {
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    justify-content: flex-start;
    align-items: center;
    padding: 25px;
    text-align: center;
    min-height: 500px;
}
.professional_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.professional_top .badge {
    background-color: #ffedd5;
    color: #92310a;
    line-height: normal;
    padding: 6px 11px;
}
.rating {
    display: flex;
    align-items: center;
    gap: 5px;
}
.rating svg {    
    color: #f59e0b;
}
.professional_avatar img {
    width: 100px;
    height: 100px;
    border-radius: 999px;
    object-fit: cover;
}
.professional_content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.professional_content h3 {
    color: var(--primary);
    font-size: 22px;
}
.professional_content p,
.professional_content h3 {
    margin-bottom: 0;
}
.call-action {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 20px;
}
.call-action svg {
    color: var(--primary);
}

/* Engineer Card */
.company-engineers .professional_item {
    background-color: var(--bg);
    min-height: 365px;
}
.coverages {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.coverages > .badge {
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    background-color: #f5f7f9 !important;
    color: var(--text) !important;
    font-weight: normal;
    padding: 5px 10px;
}
.nav.nav-tabs {
    padding: 0px;
    border-bottom-color: rgba(255, 136, 31, 0.3);
}
.nav.nav-tabs > .nav-item > .nav-link {
    border: none;
    margin-bottom: 0px;
    background-color: var(--bg);
    color: var(--primary);
}
.nav.nav-tabs > .nav-item > .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
}
#contacted, #concern {
    background-color: var(--bg);
    border-radius: 12px;
    padding: 25px;
}
#contacted .form-check-input[type=checkbox], #concern .form-check-input[type=checkbox] {
    width: 20px;
    height: 20px;
    box-shadow: none  !important;
}
#contacted .form-check, #concern .form-check {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--body);
    cursor: pointer;
}
#contacted .form-check-input:checked, #concern .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}
#contacted .form-control, #concern .form-control {
    min-height: 50px;
    max-width: 600px;
    box-shadow: none  !important;
}
#contacted .form-control:focus, #concern .form-control:focus {
    border-color: var(--primary);
}
#contacted .btn-primary, #concern .btn-primary {
    padding: 12px 25px;
}
#concern {
    min-width: 100%;
    padding: 50px;
}
@media screen and (max-width: 767px) {
    #concern {
        padding: 20px;
    }
}
.community .expertise_items {
    padding-left: 0px;
    padding-right: 0px;
}
.community .expertise_items .expertise_item {
    width: calc(100% * 1 / 3 - 10px);
}
.community .expertise_items .expertise_item img {
    border-radius: 8px;
}
.community .expertise_item .expertise_title {
    max-width: fit-content;
    font-weight: 700;
    text-transform: capitalize;
    font-size: 18px;
}
.swiper.gallery-slider .swiper-slide img {
    height: 400px;
    width: 100%;
    object-fit: cover;
}
.company-skills .profile-skills {
    background-color: #faefe5;
    border: 1px solid #ffcc9e;
}
@media screen and (max-width: 1199px) {
    .swiper.gallery-slider .swiper-slide img {
        height: 300px;
    }
}
@media screen and (max-width: 768px) {
    .swiper.gallery-slider .swiper-slide img {
        height: 160px;
    }
    .profile-card .d-flex {
        flex-direction: column;
    }
    .profile-card .d-flex > .col-md-7, .profile-card .d-flex > .col-md-5 {
        width: 100%;
    }
}
#sopTabsContent {
    padding-inline-start: 0px;
    padding-inline-end: 0px;
}