:root {
    --primary: #cd4844;
    --secondary: #373957;
    --bg-secondary: #2e3853;
    --white: #ffffff;
    --dark-blue: #1d245a;
    --gray: #d8d8d8;
    --fs-s: 12px;
    --fs-m: 1rem;
    --fs-l: 1.2rem;
    --fs-xl: 1.5rem;
    --fs-xxl: 2rem;
    --fs-h: 3rem;
    --fs-xh: 4rem;
    --fs-lead: 1.25rem;
    --fs-heading: 46px;
    --fs-subheading: 36px;
    --fs-banner: 52px;
}

@media screen and (max-width: 991px) {
    :root {
        --fs-xh: 4rem;
    }
}

@media screen and (max-width: 768px) {
    :root {
        --fs-xxl: 1.75rem;
        --fs-heading: 36px;
        --fs-heading-m: 30px;
        --fs-banner: 48px;
    }
}

@media screen and (max-width: 576px) {
    :root {
        --fs-xxl: 1.5rem;
        --fs-xl: 1.25rem;
        --fs-xh: 3rem;
        --fs-banner: 42px;
    }
}

@media screen and (max-width: 400px) {
    :root {
        --fs-xl: 1.125rem;
        --fs-heading: 30px;
        --fs-lead: 1.125rem;
    }
}

body {
    font-family: "Roboto", sans-serif;
    color: #555;
    font-size: var(--fs-m);
    font-weight: 300;
    line-height: 30px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.heading-font {
    font-family: "neue-haas-grotesk-display", sans-serif;
    font-weight: 700;
}

h1,
h2 {
    font-weight: 800;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.logo-text {
    color: var(--primary) !important;
    font-family: 'nasalizationregular', Arial, sans-serif;
    font-weight: bold;
    font-style: normal;
    font-size: 115%;
}

@font-face {
    font-family: 'nasalizationregular';
    src: url('../fonts/nasalization-rg.ttf') format('truetype');
}

a,
p,
li,
b {
    font-size: var(--fs-m);
    line-height: 30px;
    font-weight: 500;
}

p strong,
b strong {
    color: var(--primary);
    font-weight: 600;
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    text-decoration: none;
}

a,
a:hover,
a:active {
    color: var(--primary);
}

.text-default {
    color: #555 !important;
}

.text-black {
    color: #000 !important;
}

.text-light {
    color: #D0D0D0 !important;
}

/* Text link underline */
a.more {
    position: relative;
    text-decoration: none;
}

a.more::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    background: var(--primary);
    transition: width 0.3s;
    left: 0;
    bottom: -1.5px;
}

a.more:hover::after {
    width: 100%;
}

a.more:hover {
    color: var(--primary);
}

.more .icon-chevron-right {
    margin-left: 8px;
    font-size: 12px;
}

/* Buttons */
.btn {
    padding: 10px 30px;
    border-radius: 30px;
    font-family: "neue-haas-grotesk-display", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
}

.btn:hover {
    color: #fff;
}

.btn:focus,
.btn:active {
    outline: none;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* Button Transition Effect */
.btn {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.4s ease-in-out;
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

footer .btn.btn-link:hover {
    color: var(--primary);
    text-decoration: none;
}

/* Button Styles */
.btn-primary,
.btn-secondary {
    border: none;
}

.btn-primary.btn::before {
    background: var(--secondary);
    border-color: var(--secondary);
}

.btn-secondary.btn::before {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-outline-white {
    border-color: #fff;
    color: #fff;
}

.btn-outline-white:hover,
.btn-outline-white:focus {
    color: var(--primary);
}

.btn-outline-white.btn::before {
    background: #fff;
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-check+.btn-outline-secondary {
    text-transform: none;
    padding: 8px 26px;
    font-weight: 500;
    letter-spacing: normal;
    font-size: 14px;
    line-height: 26px;
}

/* Backgrounds */
.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--bg-secondary) !important;
}

.bg-dark {
    background-color: rgb(31, 39, 50) !important;
    color: #D0D0D0;
}

.bg-dark .heading {
    color: #fff;
}

.bg-blue-gradient {
    background: linear-gradient(135deg, rgba(30, 60, 114, 1) 0%, rgba(42, 82, 152, 1) 24%, rgba(42, 82, 152, 1) 67%, rgba(30, 60, 114, 1) 100%);
}

.bg-secondary-gradient {
    background: linear-gradient(to bottom right, var(--secondary), #001f3f);
}

.bg-textured {
    background-image:
        linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 60%),
        url('../images/textured-background.webp');
    background-size: cover;
    background-position: top;
}

.nav-padding {
    padding-top: 115px;
}

@media screen and (max-width: 768px) {
    .nav-padding {
        padding-top: 90px;
    }
}

.nav-padding.no-image {
    height: auto;
    min-height: 340px;
}

.section-hr {
    margin: auto;
    width: 95%;
    border-top: 1.5px solid var(--gray);
}

.container-fluid {
    width: 100% !important;
}

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Forms */
.form-control,
.form-select,
.form-control:disabled,
.form-control:read-only {
    border: none;
    font-size: var(--fs-m);
    background: #f4f4f5;
    border: transparent;
    border-radius: 4px;
    color: #000;
}

.form-control:active,
.form-control:focus,
.form-select:active,
.form-select:focus {
    color: #000;
    border: 1px solid var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f4f4f5;
}

.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: rgba(0, 0, 0, 0.5);
}

.form-control::-moz-placeholder,
.form-select::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(0, 0, 0, 0.5);
}

.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder {
    /* IE 10+ */
    color: rgba(0, 0, 0, 0.5);
}

.form-control:-moz-placeholder,
.form-select:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(0, 0, 0, 0.5);
}

textarea {
    height: auto !important;
}

#overlayer {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 7100;
    background: #fff;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.loader {
    z-index: 7700;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bg-image a {
    color: #fff;
}

.bg-image.overlay {
    position: relative;
}

.bg-image.overlay:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-image.overlay>.container {
    position: relative;
    z-index: 2;
}

.bg-image svg {
    position: absolute;
    bottom: 0;
    left: 0;
}

.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    max-width: 3000px;
    margin: auto;
}

.section .subheading {
    font-size: var(--fs-subheading);
    color: var(--secondary);
}

.section .heading {
    font-size: var(--fs-heading);
    color: var(--secondary);
    margin-bottom: 1rem;
}

.banner .container {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.banner h1 {
    font-size: var(--fs-banner);
}

.more {
    text-decoration: underline;
    font-weight: bold;
}

.more:hover {
    text-decoration: none;
}

.lead {
    font-weight: 500;
    font-size: var(--fs-lead);
}

@media (max-width: 1600px) {
    .section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

@media screen and (max-width: 576px) {
    .section {
        padding-top: 2.2rem;
        padding-bottom: 2.2rem;
    }

    .btn {
        padding: 10px 20px;
    }

    .btn-lg,
    .btn-group-lg>.btn {
        padding: 10px 24px;
        font-size: var(--fs-l);
    }
}

/* Quote */
.quote {
    max-width: 1000px;
}

.quote h1 {
    font-size: 60px;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
}

.quote p {
    font-size: var(--fs-l);
}

.quote .quote-icon {
    display: inline-block;
    font-size: 96px;
    line-height: 0;
    font-weight: 700;
    width: 40px;
}

@media screen and (max-width: 1200px) {
    .quote h1 {
        font-size: 54px;
    }
}


@media screen and (max-width: 991px) {
    .quote h1 {
        font-size: 48px;
        text-align: center;
    }

    .quote .quote-icon {
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
    .quote h1 {
        font-size: 40px;
    }
}

@media screen and (max-width: 480px) {
    .quote h1 {
        font-size: 32px;
    }

    .quote .quote-icon {
        font-size: 64px;
    }

    .quote .quote-icon {
        width: 20px;
    }
}

/* Navbar */
.site-nav {
    background-color: #fff;
    position: fixed;
    top: 0;
    z-index: 9;
    width: 100%;
    transition: top 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.stick-navbar {
    position: fixed;
    top: 0;
    animation: slideDown 0.5s forwards ease-in-out;
}

@keyframes slideDown {
    from {
        top: -100vh;
    }

    to {
        top: 0;
    }
}

.unstick-navbar {
    position: fixed;
    animation: slideUp 0.5s forwards ease-in-out;
}

@keyframes slideUp {
    from {
        top: 0;
    }

    to {
        top: -100vh;
    }
}

.site-nav-wrapper {
    padding: 12px 20px;
    transition: all 0.3s ease-in-out;
}

/* Shrink nav on scroll down */
@media (min-width: 1200px) {
    .site-nav-wrapper.shrink {
        padding: 0 !important;
    }

    .site-nav-wrapper.shrink .brand {
        width: 200px;
    }

    .site-nav-wrapper.shrink .site-menu>li>a,
    .site-nav .site-menu .has-children .dropdown a {
        font-size: 14px;
    }
}
/* End shrink nav */

.site-nav h1,
.site-nav .h1 {
    margin: 0;
    padding: 0;
    font-size: 24px;
}

.site-nav .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.site-nav .desktop-nav .content-left,
.site-nav .desktop-nav .content-right {
    display: flex;
    align-items: center;
}

.site-nav .desktop-nav .content-left {
    gap: 4rem;
}

.site-nav .desktop-nav .content-right {
    gap: 2rem;
}

.site-nav .brand {
    width: 250px;
    transition: all 0.3s ease-in-out;
}

.site-nav .cta-button {
    font-size: 18px;
    font-weight: 500;
    line-height: 40px;
    padding: 6px 20px;
    border-radius: 30px;
    background: var(--primary);
    border: 2px solid var(--primary);
    color: #fff;
    text-wrap: nowrap;
}

.site-nav .mobile-nav .cta-button {
    font-size: 28px;
    padding: 10px 30px;
}

.site-nav .cta-button:hover {
    color: var(--primary);
    background: transparent;
    border: 2px solid var(--primary);
}

.site-nav .site-menu {
    margin-bottom: 0;
}

.site-nav .site-menu>li {
    display: inline-block;
}

.site-nav .site-menu>li>a:hover,
.site-nav .site-menu>li>a.active {
    color: var(--primary);
}

.site-nav .site-menu>li>a,
.site-nav .site-menu .has-children .dropdown a {
    font-size: 16px;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none !important;
    text-transform: uppercase;
    color: var(--secondary);
    white-space: nowrap;
    transition: all 0.3s ease-in-out;
}

.site-nav .site-menu .has-children {
    position: relative;
}

.site-nav .site-menu .has-children>a {
    position: relative;
    padding-right: 20px;
}

.site-nav .site-menu .has-children>a:before {
    position: absolute;
    content: "\e315";
    font-size: 16px;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-family: 'icomoon';
}


.site-nav .site-menu .has-children:hover>a:before,
.site-nav .site-menu .has-children:focus>a:before,
.site-nav .site-menu .has-children:active>a:before,
.site-nav .site-menu .has-children>a.open:before {
    content: "\e313";
}

.site-nav .site-menu .has-children .dropdown {
    visibility: hidden;
    opacity: 0;
    top: 100%;
    z-index: 999;
    position: absolute;
    text-align: left;
    border-radius: 8px;
    -webkit-box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px -2px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    margin-top: 20px;
    margin-left: 0px;
    background: #fff;
    -webkit-transition: 0.2s 0s;
    -o-transition: 0.2s 0s;
    transition: 0.2s 0s;
}

.site-nav .site-menu .has-children .dropdown>li {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 200px;
}

.site-nav .site-menu .has-children .dropdown>li>a {
    padding: 5px 20px;
    display: block;
}

.site-nav .site-menu .has-children .dropdown>li>a:hover {
    color: var(--primary);
}

.site-nav .site-menu .has-children .dropdown>li.has-children>a:before {
    content: "\e315";
    right: 20px;
}

.site-nav .site-menu .has-children .dropdown>li.has-children>.dropdown,
.site-nav .site-menu .has-children .dropdown>li.has-children>ul {
    left: 100%;
    top: 0;
}

.site-nav .site-menu .has-children .dropdown>li.has-children>.dropdown li a:hover,
.site-nav .site-menu .has-children .dropdown>li.has-children>ul li a:hover {
    color: var(--primary);
}

.site-nav .site-menu .has-children .dropdown>li.has-children:hover>a,
.site-nav .site-menu .has-children .dropdown>li.has-children:active>a,
.site-nav .site-menu .has-children .dropdown>li.has-children:focus>a {
    color: var(--primary);
}

.site-nav .site-menu .has-children:hover>a,
.site-nav .site-menu .has-children:focus>a,
.site-nav .site-menu .has-children:active>a {
    color: var(--primary);
}

.site-nav .site-menu .has-children:hover,
.site-nav .site-menu .has-children:focus,
.site-nav .site-menu .has-children:active {
    cursor: pointer;
}

.site-nav .site-menu .has-children:hover>.dropdown,
.site-nav .site-menu .has-children:focus>.dropdown,
.site-nav .site-menu .has-children:active>.dropdown {
    -webkit-transition-delay: 0s;
    -o-transition-delay: 0s;
    transition-delay: 0s;
    margin-top: 0px;
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 1360px) {
    .site-nav .desktop-nav .content-left {
        gap: 2rem;
    }

    .site-nav .site-menu>li>a,
    .site-nav .site-menu .has-children .dropdown a {
        padding: 5px 12px;
    }

    #desktopNav {
        margin: 0 1rem;
    }
}

@media screen and (max-width: 1300px) {
    .site-nav .desktop-nav .content-left {
        gap: 0;
    }

    .site-nav .cta-button {
        font-size: 16px;
    }
}

@media screen and (max-width: 991px),
(hover: none) {
    .site-nav .desktop-nav .content-left {
        gap: 2rem;
    }
}

/* Mobile Nav */
.site-nav .hamburger,
.site-nav .close {
    z-index: 1002;
    background: none;
    border: none;
    transition: all 0.3s ease;
    display: none;
}

.site-nav .hamburger span i,
.site-nav .close span i {
    display: block;
    font-size: 32px;
}

.site-nav .mobile-nav {
    visibility: visible;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    clip-path: circle(0% at calc(100% - 40px) 35px);
    transition: clip-path 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s linear 0.6s;
    pointer-events: none;
}

.site-nav .mobile-nav.active {
    height: 100vh;
    touch-action: none;
    clip-path: circle(150% at calc(100% - 40px) 35px);
    pointer-events: all;
    transition: clip-path 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0s;
    visibility: visible;
}

.site-nav .mobile-nav .mobile-nav-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.site-nav .mobile-nav .mobile-nav-header img {
    width: 300px;
    height: auto;
}

.site-nav .mobile-nav .site-menu {
    list-style: none;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 40px 0;
}

.site-nav .mobile-nav .site-menu {
    opacity: 1;
    transform: translateY(0);
}

.site-nav .site-menu .has-children .dropdown>li {
    margin: 10px 0;
}

.site-nav .mobile-nav .site-menu>li>a,
.site-nav .mobile-nav .site-menu .has-children .dropdown a {
    color: white;
    text-decoration: none;
    font-size: 32px;
    position: relative;
    padding: 10px 20px;
}

.site-nav .mobile-nav .site-menu>li>a::before {
    right: -10px;
    font-size: 24px;
}

.site-nav .mobile-nav .site-menu .has-children .dropdown {
    position: relative;
    top: 0;
    background: linear-gradient(135deg, #232b39 0%, #263347 100%);
    display: none;
    padding: 20px 20px;
}

.site-nav .mobile-nav .site-menu .has-children .dropdown.open {
    display: block;
}

@media screen and (max-width: 991px),
(hover: none) {
    .site-nav .hamburger {
        display: inline-block;
    }

    #desktopNav {
        display: none;
    }

    .site-nav .desktop-nav {
        justify-content: space-between;
    }

    .site-nav .mobile-nav .site-menu>li>a,
    .site-nav .mobile-nav .site-menu .has-children .dropdown a {
        font-size: 24px;
    }

    .site-nav .mobile-nav .cta-button {
        font-size: 24px;
        padding: 8px 24px;
    }
}

@media screen and (max-width: 768px) {
    #googlePartnerButton {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    #contactButton {
        display: none;
    }

    .site-nav .mobile-nav .site-menu>li>a,
    .site-nav .mobile-nav .site-menu .has-children .dropdown a {
        font-size: 20px;
        text-wrap: wrap;
    }

    .site-nav .mobile-nav .site-menu .has-children .dropdown {
        padding: 10px 20px;
    }

    .site-nav .mobile-nav .cta-button {
        font-size: 20px;
        padding: 6px 20px;
    }
}

@media screen and (max-width: 400px) {
    .site-nav .mobile-nav {
        padding-top: 60px;
    }

    .site-nav .mobile-nav .site-menu {
        margin: 20px 0;
    }

    .site-nav .mobile-nav .mobile-nav-header img {
        width: 250px;
    }
}

/* Footer */
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col-1 {
    width: 25%;
}

.footer-col-2 {
    width: 25%;
}

.footer-col-3 {
    width: 15%;
}

.footer-col-4 {
    width: 20%;
}

@media screen and (max-width: 991px) {

    #footerEmail {
        word-wrap: break-word;
    }

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        width: 40%;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 576px) {

    .footer-col-1,
    .footer-col-2,
    .footer-col-3,
    .footer-col-4 {
        width: 100%;
        margin-bottom: 2.5rem;
    }
}

/* Callout Section */
.cta-section img {
    height: auto;
    width: auto;
}

.cta-section h2 {
    font-size: var(--fs-xh);
}

/* Awards Section */
.award-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 24px 0;
}

.award-item {
    flex: 0 0 20%;
    max-width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
}

@media (max-width: 992px) {
    .award-item {
        flex: 0 0 33.3333%;
        max-width: 33.3333%;
    }
}

@media (max-width: 768px) {
    .award-item {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 480px) {
    .award-item {
        flex: 0 0 100%;
        max-width: 300px;
    }
}

/* Latest Posts Items */
/* News Items Grid */
.news-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.news-item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-item h3 {
    font-size: var(--fs-l);
}

.news-item .media-entry {
    display: flex;
    flex-direction: column;
    height: 100%;
}

@media screen and (max-width: 991px) {
    .news-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto auto;
        gap: 2rem;
    }

    .news-items .news-item:first-child {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }
}

@media screen and (max-width: 540px) {
    .news-items {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .news-items .news-item:first-child {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }
}

.media-entry>a {
    display: block;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    overflow: hidden;
    border-radius: 10px;
}

.media-entry h3,
.media-entry .h3 {
    font-weight: 700;
}

.media-entry h3 a,
.media-entry .h3 a {
    color: var(--secondary);
}

.media-entry h3 a:hover,
.media-entry .h3 a:hover {
    color: var(--primary);
}

.media-entry .m-body {
    padding: 20px;
}

.media-entry .date {
    font-size: var(--fs-s);
}

.media-entry:hover .more .label {
    left: 0;
    opacity: 1;
    visibility: visible;
}

.media-entry:hover .more .arrow {
    border-color: var(--primary);
}

.media-entry p {
    font-size: var(--fs-m);
}

.media-entry img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Testimonials Slider */
.testimonials-slider .swiper-slide {
    width: auto;
    height: auto;
    max-width: 50%;
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
}

.testimonials-slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.block-testimonial {
    background-color: #fff;
    padding: 30px;
    height: 100% !important;
}

@media screen and (min-width: 1600px) {
    .block-testimonial {
        padding: 50px;
    }
}

@media screen and (min-width: 2000px) {
    .block-testimonial {
        padding: 80px;
    }
}

.block-testimonial p {
    font-size: var(--fs-xl);
    color: #000;
    line-height: 2;
    margin-bottom: 2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.block-testimonial .author {
    display: flex;
    gap: 20px;
}

.block-testimonial .author img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
}

.block-testimonial .author h3,
.block-testimonial .author .h3 {
    font-size: var(--fs-l);
    color: var(--primary);
    text-transform: capitalize;
}


.block-testimonial .author .position {
    font-size: var(--fs-m);
}

@media screen and (max-width: 991px) {
    .testimonials-slider .swiper-slide {
        max-width: 60%;
    }
}

@media screen and (max-width: 580px) {
    .testimonials-slider .swiper-slide {
        max-width: 100%;
    }
}

@media screen and (max-width: 400px) {
    .block-testimonial .position {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 350px) {
    .block-testimonial .author {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Slider Pagination */
.swiper-pagination {
    position: relative;
}

.swiper-pagination-bullet-active {
    background: var(--primary);
}

.swiper-wrapper {
    height: auto !important;
}

/* Slider Controls */
#project-controls {
    display: flex;
    gap: 12px;
    margin-bottom: 2.5rem;
}

#project-controls:active,
#project-controls:focus,
#testimonials-controls:active,
#testimonials-controls:focus {
    outline: none;
}

#project-controls .next,
#project-controls .prev,
#testimonials-controls .next,
#testimonials-controls .prev {
    cursor: pointer;
    display: inline-block;
    position: relative;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    width: 80px;
    height: 80px;
    background-color: #efefef;
    border-radius: 50%;
}

#project-controls .next>span,
#project-controls .prev>span,
#testimonials-controls .next>span,
#testimonials-controls .prev>span {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

#project-controls .next:hover,
#project-controls .prev:hover,
#testimonials-controls .next:hover,
#testimonials-controls .prev:hover {
    opacity: 1;
}

#project-controls .next:hover,
#project-controls .prev:hover,
#testimonials-controls .next:hover,
#testimonials-controls .prev:hover {
    background-color: var(--primary);
    color: #fff;
}

#project-controls .prev,
#testimonials-controls .prev {
    right: 0;
}

#project-controls .prev:hover,
#testimonials-controls .prev:hover {
    color: #fff;
    right: 7px;
}

#project-controls .next,
#testimonials-controls .next {
    left: 0;
}

#project-controls .next:hover,
#testimonials-controls .next:hover {
    color: #fff;
    left: 7px;
}

/* Projects Slider */
.projects-slider {
    margin-left: -200px;
}

.projects-slider .swiper-slide {
    width: 600px !important;
    padding-left: 30px;
}

.project {
    position: relative;
}

.project .thumb {
    display: block;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
}

.project .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .5s all ease;
}

.project .thumb:hover img {
    transform: scale(1.05);
    filter: brightness(80%);
}

.project h3,
.project .h3 {
    font-size: var(--fs-l);
    font-weight: bold;
}

.project h3 a,
.project .h3 a {
    font-size: inherit;
    color: #000;
}

.projects-slider-wrap {
    position: relative;
}

.project-link-icon {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 50px;
    padding: 16px 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    overflow: hidden;
    z-index: 2;
}

.project-link-icon i,
.project-link-icon .link-text {
    color: #000;
    font-size: 1.5rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.project-link-icon .link-text {
    opacity: 0;
    max-width: 0;
    margin-left: 0;
    white-space: nowrap;
    transition: opacity 0.3s, max-width 0.3s, margin-left 0.3s;
    overflow: hidden;
    display: flex;
}

.project:hover .project-link-icon .link-text,
.project:focus-within .project-link-icon .link-text,
.project .h3 a:hover .project-link-icon .link-text,
.project .h3 a:focus .project-link-icon .link-text {
    opacity: 1;
    max-width: 200px;
    margin-left: 8px;
}

@media screen and (max-width: 991px) {
    .projects-slider {
        margin-left: 0;
    }

    .projects-slider .swiper-slide {
        width: 100% !important;
        padding: 0 4rem;
    }
}

@media screen and (max-width: 768px) {
    .projects-slider .swiper-slide {
        width: 100% !important;
        padding: 0 2rem;
    }

    .project-link-icon {
        display: none;
    }
}

@media screen and (max-width: 576px) {
    .projects-slider .swiper-slide {
        width: 100% !important;
        padding: 0 1rem;
    }
}

/* Contact Info Section */
.contact-info-section .contact-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 16px;
    border-right: 1px solid var(--gray);
}

.contact-info-section .contact-block:last-child {
    border-right: none;
}

.contact-info-section .contact-icon {
    margin-bottom: 16px;
}

.contact-info-section h4 {
    margin-bottom: 8px;
}

.contact-info-section a {
    font-size: var(--fs-l);
    word-break: break-all;
}

@media screen and (max-width: 991px) {
    .contact-info-section .row {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-info-section .contact-block {
        border-right: none;
        border-bottom: 1px solid var(--gray);
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 24px 0;
        text-align: left;
    }

    .contact-info-section .contact-block:last-child {
        border-bottom: none;
    }

    .contact-info-section .contact-icon {
        margin-bottom: 0;
        margin-right: 32px;
    }
}

@media screen and (max-width: 560px) {
    .contact-info-section .contact-block {
        flex-direction: column;
        align-items: center;
        padding: 24px 0;
        text-align: center;
    }

    .contact-info-section .contact-icon {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .contact-info-section h4 {
        margin-bottom: 0.5rem;
    }
}

/* Services List Section */
.services-list-section {
    display: flex;
    justify-content: space-between;
}

.service-list-content {
    width: 30%;
}

.services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
}

.service-item {
    display: flex;
    align-items: center;
}

.service-item p {
    font-size: var(--fs-l);
    line-height: 40px;
}

.service-item span {
    color: var(--primary);
    opacity: 0.8;
}

@media screen and (max-width: 1200px) {
    .services-list-section {
        flex-direction: column;
    }

    .service-list-content {
        width: 100%;
        margin-bottom: 4rem;
    }

    .service-item p {
        font-size: var(--fs-l);
        line-height: 36px;
    }
}

@media screen and (max-width: 768px) {
    .service-list-content {
        width: 100%;
    }

    .services-list {
        grid-template-columns: 1fr;
    }
}

/* Services Accordion Section */
.services-accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid black;
    padding: 40px 0;
}

.services-ccordion-header h3 {
    font-weight: 700;
}

.services-accordion-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 20px;
    cursor: pointer;
}

.services-accordion-title {
    display: flex;
    flex-grow: 1;
    margin-left: 20px;
}

.services-accordion-header h3 {
    width: 300px;
}

.services-accordion-header p {
    font-size: var(--fs-l);
    font-weight: 500;
    line-height: 1.5;
    color: #000;
}

.services-accordion-header i {
    width: 48px;
    height: 48px;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.services-accordion-header .toggle-btn:hover .toggle-icon {
    background: var(--primary);
    color: #fff;
}

.services-accordion-header .toggle-btn:hover .vertical-line,
.services-accordion-header .toggle-btn:hover .horizontal-line {
    background: #fff;
}

.services-accordion-header .toggle-icon {
    border: none;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    height: 40px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background 0.3s ease;
}

.services-accordion-header .toggle-icon-inner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.services-accordion-header .toggle-icon-inner .horizontal-line,
.services-accordion-header .toggle-icon-inner .vertical-line {
    position: absolute;
    background: #000;
}

.services-accordion-header .toggle-icon-inner .horizontal-line {
    width: 20px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.services-accordion-header .toggle-icon-inner .vertical-line {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: height 0.3s ease, top 0.3s ease;
}

.services-accordion-header .toggle-icon[aria-expanded="true"] .vertical-line {
    height: 0;
    top: 50%;
}

.services-accordion-item .accordion-body {
    margin-left: 368px;
    margin-right: 60px;
}

@media screen and (max-width: 1200px) {
    .services-accordion-item .accordion-body {
        margin-left: 68px;
    }
}

@media screen and (max-width: 991px) {
    .services-accordion-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-accordion-header {
        align-items: start;
    }

    .services-accordion-header h3 {
        width: auto;
    }

    .accordion-body {
        margin-right: 0;
    }
}

@media screen and (max-width: 576px) {
    .container-header {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
}

/* Additional Services Section */
.service-box {
    border-radius: 8px;
}

/* Inner Services Page Details Card */
.service-details-card {
    border-radius: 10px;
    border: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    background-color: #fff;
}

.service-details-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-details-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 50%;
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 28px;
}

.service-details-icon.primary {
    background-color: rgba(230, 126, 57, 0.1);
}

/* Footer */
footer .copyright {
    padding: 20px;
    text-align: center;
    background-color: var(--dark-blue);
}

footer .copyright span,
footer .copyright a {
    color: #fff;
    font-size: var(--fs-s);
    font-weight: 500;
    letter-spacing: 0.2em;
}

.back-to-top {
    position: fixed !important;
    right: 10px;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/* About Features */
.feature-column {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    border-top: 2px solid #E3E5E8;
}

.feature-column h3 {
    color: var(--secondary);
}

.feature-column:hover,
.feature-column.active {
    border-top-color: var(--primary);
}

.feature-column:hover h3,
.feature-column.active h3 {
    color: var(--primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.feature-column:hover .feature-icon,
.feature-column.active .feature-icon {
    color: var(--primary);
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.feature-header-content {
    min-height: 200px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-header-content.active {
    animation: fadeSlideUp 0.6s ease;
    opacity: 1;
}

.feature-header-content:not(.active) {
    display: none;
}

.feature-header-content p {
    font-size: var(--fs-l);
}

/* Footer CTA */
.cta-section {
    border-radius: 14px;
    padding: 80px 0;
}

/* Services Section */
.services-sticky-sidebar {
    position: sticky;
    top: 50px;
    height: calc(100vh - 100px);
    padding-right: 2rem;
}

.services-sticky-sidebar h2,
.services-sticky-sidebar p {
    color: #fff;
}

.services-nav {
    margin-top: 80px;
}

.services-nav-item {
    margin-bottom: 60px;
}

.services-nav-item.active .service-link {
    color: var(--primary);
}

.services-nav-item .badges {
    display: none;
    flex-wrap: wrap;
    gap: 12px;
    row-gap: 16px;
    margin-bottom: 2rem;
}

.services-nav-item .badges .badge-wrapper {
    display: inline-block;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.services-nav-item .badges .badge-wrapper .badge {
    font-size: var(--fs-l);
    border-radius: 20px;
    color: #ececec;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-link {
    color: rgb(67, 84, 110);
    font-size: var(--fs-h);
    line-height: 60px;
    font-weight: 550;
    transition: color 0.4s;
    text-decoration: none;
    display: block;
    margin-bottom: 1rem;
}

.services-cards {
    padding-top: 180px;
}

.service-card {
    position: relative;
    padding: 40px 30px;
    margin-bottom: 6rem;
    opacity: 0.5;
    transform: rotate(4deg) translateY(200px);
    transition: all 0.4s ease-in-out;
}

.service-card:last-child {
    margin-bottom: 0;
}

.service-card.fade-in {
    animation: tiltSlideFade 0.4s forwards;
}

@keyframes tiltSlideFade {
    0% {
        opacity: 0.5;
        transform: rotate(4deg) translateY(200px);
    }

    100% {
        opacity: 1;
        transform: rotate(0deg) translateY(0);
    }
}

.service-accent-bg {
    position: absolute;
    width: 400px;
    height: 100%;
    background: linear-gradient(to bottom right, var(--bg-secondary), transparent);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    top: 100px;
    right: -70px;
    border-radius: 20px;
    filter: blur(12px);
    opacity: 0.19;
    z-index: 1;
}

.service-wrapper {
    padding: 2rem;
    color: #fff;
}

.service-content {
    position: relative;
    z-index: 3;
}

.service-content>h2 {
    font-size: var(--fs-xxl);
    color: #fff;
}

.service-content>p {
    margin-top: 2rem;
    font-size: var(--fs-l);
}

.service-wrapper>img {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 350px;
    object-fit: scale-down;
    background-color: #fff;
    margin-top: 2rem;
    border-radius: 16px;
}

@media screen and (max-width: 1200px) {
    .services-sticky-sidebar {
        height: auto;
        margin-bottom: 2rem;
    }

    .service-wrapper {
        padding: 0;
    }

    .service-card {
        margin-bottom: 3rem;
        padding-left: 0;
        padding-right: 0;
    }

    .services-nav {
        display: none;
    }

    .services-nav-item {
        margin-bottom: 0;
    }
}

/* FAQ Accordion */
.accordion-item {
    background: transparent;
    border: none;
    padding: 12px 0;
}

.accordion-button {
    color: var(--secondary) !important;
    background-color: transparent;
    font-weight: 600;
    font-size: var(--fs-l);
    gap: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: none;
    color: var(--primary);
    font-weight: bold;
}

.accordion-item:has(.accordion-collapse.show) {
    border-radius: 20px;
    color: #ececec;
    backdrop-filter: blur(10px);
    background: rgb(217 217 217 / 20%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease, border-radius 0.3s ease;
}

.accordion-item:has(.accordion-collapse.show) .accordion-header,
.accordion-item:has(.accordion-collapse.show) .accordion-body {
    color: #333;
}

/* Services Page */
.detailed-content-section img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.more-services-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    background-color: #fff;
}

.more-services-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.more-services-card .card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.more-services-card .card-body {
    padding: 20px;
}

.more-services-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.more-services-card:hover .card-img img {
    transform: scale(1.1);
}

.more-services-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.more-services-card .overlay h3 {
    color: white;
    margin: 0;
    font-size: var(--fs-xl);
}

.more-services-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(67, 97, 238, 0.1);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: var(--fs-s);
    font-weight: 600;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .more-services-card .card-img {
        height: 250px;
    }

    .more-services-card .card-img img {
        object-fit: scale-down;
    }
}

/* Services Page Repeating Details */
.services-repeater .service-bg {
    position: relative;
    overflow: hidden;
}

.services-repeater .service-bg:nth-child(odd) {
    background: white;
}

.services-repeater .service-bg:nth-child(even) {
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
}

.services-repeater .service-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem;
}

.services-repeater .service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    max-width: 40%;
    height: 100%;
    left: -20px;
    padding: 4rem 0;
}

.services-repeater .service-image img {
    height: 100%;
    border-radius: 1rem;
    object-fit: cover;
}

.services-repeater>.service-bg:nth-child(even) .service-block {
    flex-direction: row-reverse;
}

.services-repeater>.service-bg:nth-child(even) .service-image {
    left: auto;
    right: -20px;
}

.services-repeater>.service-bg:nth-child(even) .service-content-wrapper {
    margin-left: auto;
    margin-right: 40%;
}

.services-repeater .service-content-wrapper {
    margin-left: 40%;
}

.services-repeater .service-title {
    color: var(--secondary);
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.services-repeater .service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.services-repeater>.service-bg:nth-child(odd) .service-title:after {
    background: var(--primary);
}

.services-repeater .features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.services-repeater .logo-grid {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.services-repeater .logo-grid a {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 180px;
    max-height: 100px;
    width: 100%;
    height: 100%;
}

.services-repeater .logo-grid img {
    max-width: 100%;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.services-repeater .feature-item {
    display: flex;
    align-items: center;
}

.services-repeater .feature-item i {
    margin-right: 10px;
    color: var(--primary);
}

.services-repeater>.service-bg:nth-child(even) .feature-item i {
    color: var(--secondary);
}

@media screen and (max-width: 480px) {

    .services-repeater .service-content-wrapper .service-title,
    .services-repeater .service-content-wrapper h5 {
        text-align: center;
    }

    .services-repeater .service-title:after {
        left: 50%;
        transform: translateX(-50%);
    }

    .services-repeater .logo-grid {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 991px) {

    .services-repeater .service-block {
        padding-left: inherit;
        padding-right: inherit;
    }

    .services-repeater .service-block,
    .services-repeater>.service-bg:nth-child(even) .service-block {
        flex-direction: column;
    }

    .services-repeater .service-image,
    .services-repeater .service-content-wrapper {
        width: 100%;
    }

    .services-repeater>.service-bg:nth-child(even) .service-content-wrapper {
        margin-right: 0;
    }

    .services-repeater .service-image {
        position: relative;
        left: auto;
        max-width: 100%;
        padding: 0;
    }

    .services-repeater .service-image img {
        width: 100%;
    }

    .services-repeater>.service-bg:nth-child(even) .service-image {
        right: auto;
    }

    .services-repeater .service-content-wrapper {
        margin-left: auto;
    }

    .services-repeater .features-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .services-repeater .service-content-wrapper {
        padding: 0 !important;
    }
}

@media screen and (min-width: 2000px) {
    .services-repeater .service-block {
        min-height: auto;
        padding-left: 0;
        padding-right: 0;
    }

    .services-repeater .service-image {
        position: relative;
        left: auto;
        max-width: auto;
        height: 100%;
        border-radius: 24px;
    }

    .services-repeater .service-content-wrapper {
        margin-left: 0;
    }

    .services-repeater .service-image,
    .services-repeater .service-content-wrapper {
        width: 50%;
    }

    .services-repeater>.service-bg:nth-child(even) .service-content-wrapper {
        margin-right: auto
    }
}

/* Our Process Section */
.process-timeline-wrapper {
    height: auto;
    position: relative;
}

.process-timeline-track {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: #e0e0e0;
    border-radius: 4px;
    z-index: 1;
}

.process-timeline-dot {
    color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    width: 56px;
    height: 56px;
    padding: 12px;
    font-size: 24px;
    transform: translate(-50%, -50%);
    border: 2px solid var(--white);
    background-color: var(--secondary);
    border-radius: 50%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.process-timeline-dot.active {
    opacity: 1;
}

#processDot1 {
    left: 0%;
}

#processDot2 {
    left: 33.33%;
}

#processDot3 {
    left: 66.66%;
}

#processDot4 {
    left: 100%;
}

.process-timeline-prog-bar {
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: var(--primary);
    border-radius: 4px;
    transition: width 1.5s ease-in-out;
}

.process-timeline-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    position: relative;
    width: 100%;
    gap: 0;
}

.process-timeline-item {
    width: 130%;
    max-width: none;
    margin: 0 -20%;
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 2;
}

.process-timeline-item.visible {
    opacity: 1;
}

.process-timeline-item:nth-child(1),
.process-timeline-item:nth-child(3) {
    grid-row: 1;
    margin-bottom: 80px;
}

.process-timeline-item:nth-child(2),
.process-timeline-item:nth-child(4) {
    grid-row: 2;
    margin-top: 80px;
}

.process-timeline-item:nth-child(1) {
    grid-column: 1;
}

.process-timeline-item:nth-child(2) {
    grid-column: 2;
}

.process-timeline-item:nth-child(3) {
    grid-column: 3;
}

.process-timeline-item:nth-child(4) {
    grid-column: 4;
}

.process-timeline-item:nth-child(odd),
.process-timeline-item:nth-child(even) {
    top: auto;
}

.process-timeline-step-number {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    background-color: var(--primary);
    color: var(--white);
    font-size: var(--fs-xl);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {

    .process-timeline-track,
    .process-timeline-items {
        height: 100%;
    }

    .process-timeline-wrapper {
        position: relative;
        display: block;
        margin-top: 80px;
        margin-bottom: 200px;
    }

    .process-timeline-items {
        display: flex;
        flex-direction: column;
        position: relative;
        width: 100%;
        gap: 60px;
    }

    .process-timeline-item {
        position: relative;
        width: auto;
        max-width: 400px;
        margin: -60px 0 0 0;
    }

    .process-timeline-item:nth-child(odd) {
        align-self: flex-start;
    }

    .process-timeline-item:nth-child(even) {
        align-self: flex-end;
    }

    .process-timeline-track {
        width: 4px;
        margin: 0 auto;
    }

    .process-timeline-dot {
        top: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .process-timeline-prog-bar {
        width: 100%;
        height: 0%;
        transition: height 1.5s ease-in-out;
    }

    .process-timeline-dot {
        left: 50%;
    }

    #processDot1 {
        top: 0%;
    }

    #processDot2 {
        top: 33.33%;
    }

    #processDot3 {
        top: 66.66%;
    }

    #processDot4 {
        top: 100%;
    }

    .process-timeline-step-number {
        margin: 0 auto 15px auto;
    }
}

@media screen and (max-width: 991px) {

    .process-timeline-track,
    .process-timeline-items {
        height: 1800px;
    }

    .process-timeline-wrapper {
        margin-top: 0;
        margin-bottom: 600px;
    }

    .process-timeline-items {
        gap: 0;
    }

    .process-timeline-item {
        position: absolute;
        margin: 0;
    }

    .process-timeline-item:nth-child(1),
    .process-timeline-item:nth-child(3),
    .process-timeline-item:nth-child(2),
    .process-timeline-item:nth-child(4) {
        margin-top: 0;
        margin-bottom: 0;
    }

    .process-timeline-item:nth-child(1) {
        top: 200px;
    }

    .process-timeline-item:nth-child(2) {
        top: calc(33.33% + 200px);
    }

    .process-timeline-item:nth-child(3) {
        top: calc(66.66% + 200px);
    }

    .process-timeline-item:nth-child(4) {
        top: calc(100% + 200px);
    }

    .process-timeline-item:nth-child(odd),
    .process-timeline-item:nth-child(even) {
        align-self: center;
    }

    .process-timeline-item {
        max-width: none;
    }
}

@media screen and (max-width: 576px) {
    .process-timeline-item:nth-child(1) {
        top: 150px;
    }

    .process-timeline-item:nth-child(2) {
        top: calc(33.33% + 150px);
    }

    .process-timeline-item:nth-child(3) {
        top: calc(66.66% + 150px);
    }

    .process-timeline-item:nth-child(4) {
        top: calc(100% + 150px);
    }
}

@media screen and (max-width: 440px) {

    .process-timeline-track,
    .process-timeline-items {
        height: 2000px;
    }

    .process-timeline-item:nth-child(1) {
        top: 100px;
    }

    .process-timeline-item:nth-child(2) {
        top: calc(33.33% + 100px);
    }

    .process-timeline-item:nth-child(3) {
        top: calc(66.66% + 100px);
    }

    .process-timeline-item:nth-child(4) {
        top: calc(100% + 100px);
    }
}

/* Services CTA */
.services-cta {
    max-width: 900px;
    width: auto;
    object-fit: scale-down;
}

@media screen and (max-width: 991px) {
    .services-cta {
        max-width: 100%;
    }
}

/* Why Choose Us Section */
.why-choose-us-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.why-choose-us-card {
    width: 50%;
    margin-top: 50px;
}

.why-choose-us-card h2 {
    color: var(--secondary);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.advantages-box {
    width: 50%;
    background-color: white;
    border-left: 4px solid var(--primary);
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-radius: 0 10px 10px 0;
}

.advantages-box h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.advantage-point-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.advantage-point-icon {
    min-width: 50px;
    height: 50px;
    background-color: rgba(230, 126, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 20px;
    margin-right: 20px;
}

.advantage-point-content h5 {
    color: var(--secondary);
    margin-bottom: 5px;
}

.advantage-point-content p {
    color: #555;
    margin-bottom: 0;
}

@media screen and (max-width: 991px) {
    .why-choose-us-content {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-us-card,
    .advantages-box {
        width: 100%;
    }

    .why-choose-us-card {
        margin-top: 0;
    }
}

@media screen and (max-width: 380px) {
    .advantage-point-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .advantage-point-icon {
        margin-bottom: 16px;
    }
}

/* How We Help Section */
.how-we-help-section {
    margin: 0 5%;
    border-radius: 24px;
    padding: 80px 0;
    background: linear-gradient(135deg, #2b2d42 0%, #1a1b2e 100%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .how-we-help-section {
        margin: 0 auto;
    }
}

/* GET Process Section */
.get-process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 991px) {
    .get-process-steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}

.get-process-step {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.get-process-step:hover {
    transform: translateY(-5px);
}

.get-process-step:nth-child(odd) {
    flex-direction: row;
}

.get-process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.get-process-step .step-number {
    width: 120px;
    font-size: 64px;
    font-weight: 900;
    color: white;
    padding: 40px 20px;
}

.get-process-step:nth-child(odd) .step-number {
    border-top-right-radius: 44px;
    border-bottom-right-radius: 44px;
}

.get-process-step:nth-child(even) .step-number {
    border-top-left-radius: 44px;
    border-bottom-left-radius: 44px;
}

.get-process-step .step-content {
    padding: 30px;
    flex-grow: 1;
    height: 100%;
}

.get-process-step .step-title {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
}

.get-process-step .step-icon {
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
}

.get-process-step .step-icon i {
    color: #fff;
}

@media screen and (max-width: 576px) {
    .get-process-step .step-number {
        width: 80px;
        font-size: 48px;
        padding: 24px 20px;
    }
}

/* Projects Page */

/* Featured Work Section */
.featured-project:nth-child(odd) {
    flex-direction: row-reverse;
}

.featured-project .project-details-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 2rem;
}

.featured-project .project-details-wrapper a {
    align-self: flex-start;
}

.featured-project .device-wrapper {
    position: relative;
    padding: 2rem;
}

.featured-project .desktop-preview {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 4px solid #333;
}

.featured-project .mobile-preview {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    border: 5px solid #333;
}

/* Project Filter Section */
.filter-btn {
    margin: 0.4rem;
    border-radius: 20px;
    padding: 0.4rem 1.2rem;
    border: 1px solid var(--secondary);
    color: var(--secondary);
    background-color: transparent;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--secondary);
    color: white;
}

/* Projects Grid */
.project-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.project-card .card-img-top {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.project-card .card-body {
    padding: 1.5rem;
}

.featured-project .card-tags,
.project-card .card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.featured-project .card-tag,
.project-card .card-tag {
    display: inline-block;
    font-size: var(--fs-s);
    border-radius: 20px;
    padding: 0 1rem;
    border: 1.5px solid var(--secondary);
    color: var(--secondary);
}

.featured-project .card-tag {
    font-size: var(--fs-m);
    padding: 0.2rem 1.1rem;
}

/* Project Filter Animations */
.projects-container {
    position: relative;
}

.project-item {
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.project-item.filtered-in {
    animation: growIn 0.5s ease forwards;
}

@keyframes growIn {
    0% {
        opacity: 0;
        transform: scale(0);
    }

    70% {
        transform: scale(1.05);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Blog Post */
.article-content-container {
    max-width: 48rem;
    margin: 0 auto;
}

.meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta .author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.meta .author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e5e7eb;
    overflow: hidden;
}

.meta .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.meta .author-info {
    font-size: var(--fs-m);
    line-height: 1.8;
}

.meta .author-info .author-name {
    font-weight: 500;
    color: #1a1a1a;
}

.meta .author-info .date {
    color: #666;
}

.article-share-icons {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.article-share-icons .share-icon {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    transition: all 0.2s;
}

.article-share-icons .share-icon:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.article-hero-container img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.article-content {
    font-size: var(--fs-l);
    line-height: 1.7;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content h2 {
    font-size: var(--fs-xl);
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: var(--fs-l);
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.article-content blockquote {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: var(--fs-l);
}

.article-content img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 8px;
    margin: 2rem auto;
    display: block;
}

.article-content figcaption {
    font-size: var(--fs-m);
    color: #666;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.article-share-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.article-share-section h3 {
    font-size: var(--fs-m);
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-tags {
    gap: 0.5rem;
}

.article-tag {
    padding: 0.08rem 0.6rem;
    border-radius: 20px;
    font-size: var(--fs-s);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s;
    background-color: transparent;
}

.article-tag:hover {
    opacity: 0.8;
    color: inherit;
}

.article-tag.tag-healthcare {
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.12);
}

.article-tag.tag-ai {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.12);
}

.article-tag.tag-medical {
    color: #8b5cf6;
    background-color: rgba(139, 92, 246, 0.12);
}

.article-tag.tag-digital {
    color: #f59e0b;
    background-color: rgba(245, 158, 11, 0.12);
}

.author-bio {
    margin-top: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    display: flex;
    gap: 1rem;
}

.author-bio-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #e5e7eb;
    flex-shrink: 0;
}

.author-bio-content h3 {
    font-size: var(--fs-l);
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.author-bio-content p {
    font-size: var(--fs-m);
    color: #666;
    line-height: 1.5;
}

/* Flow Section */
.flow-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.flow-box {
    padding: 2.5rem 2rem;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    border-left: 5px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.flow-box h3 {
    margin-bottom: 1rem;
    font-size: var(--fs-xl);
    color: var(--secondary);
}

.flow-container .arrow {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: bold;
}

@media (max-width: 768px) {
    .flow-container {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: stretch;
    }

    .flow-container .arrow {
        transform: rotate(90deg);
        align-self: center;
        font-size: 2.5rem;
        margin: 1rem 0;
    }
}

/* Web Services Timeline */
.timeline {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 900px;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: relative;
    width: 100%;
    margin-bottom: 3rem;
}

.timeline .timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item+.timeline-item {
    margin-top: -8rem;
}

.timeline-content {
    position: relative;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    width: 400px;
    z-index: 1;
}

.timeline-content.service-details-card {
    overflow: visible;
}

.timeline-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    background: var(--secondary);
    color: #fff;
    font-weight: bold;
    font-size: var(--fs-xl);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: top 0.3s;
}

@media screen and (max-width: 991px) {
    .timeline-content {
        width: 300px;
    }
}

@media (max-width: 767px) {
    .timeline::before {
        left: 24px;
    }

    .timeline-item,
    .timeline .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-end;
    }

    .timeline-content {
        width: 90%;
    }

    .timeline-item+.timeline-item {
        margin-top: 0;
    }

    .timeline-number {
        left: 24px;
        transform: translateY(-50%);
    }
}