:root {
    --orange: #f7941d;
    --orange-dark: #e07d09;
    --blue: #4a86c6;
    --blue-dark: #356aa3;
    --dark: #1c1c1c;
    --gray-bg: #eceeef;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

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

.text-blue {
    color: var(--blue);
}

.btn-orange {
    background: var(--orange);
    color: #fff !important;
    font-weight: 600;
    padding: .6rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-orange:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(247, 148, 29, .35);
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1060;
    background: var(--dark);
    color: #c9c9c9;
    font-size: .8rem;
    padding: .5rem 0;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1), opacity .45s ease;
}

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

.topbar a {
    color: #c9c9c9;
    text-decoration: none;
    margin-right: 1.4rem;
}

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

.topbar .topbar-social a {
    margin-right: 0;
    margin-left: 1rem;
}

body.scrolled .topbar {
    transform: translateY(-100%);
    opacity: 0;
}

.advanced-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 34px;
    z-index: 1050;
    padding: 1.2rem 0;
    background: white;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    color: #000;
    transition: all .45s cubic-bezier(.4, 0, .2, 1);
}

body.scrolled .advanced-nav {
    top: 0;
    padding: .6rem 0;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    color: #222;
}

.advanced-nav .navbar-brand {
    display: flex;
    align-items: center;
    gap: .7rem;
}

.logo-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: conic-gradient(var(--orange) 0deg 180deg, var(--blue) 180deg 360deg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .25);
}

.logo-icon::before {
    content: '';
    position: absolute;
    width: 29px;
    height: 29px;
    border-radius: 50%;
    background: #fff;
}

.logo-icon i {
    position: relative;
    z-index: 2;
    color: #000;
    font-size: 1rem;
}

body.scrolled .logo-icon i {
    color: var(--orange);
}

@media (min-width: 992px) {
    .brand-name .text-orange {
        color: #000;
    }
}

body.scrolled .brand-name .text-orange {
    color: var(--orange);
}

.brand-name {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 1px;
    color: #fff;
    transition: color .4s ease;
    display: block;
}

body.scrolled .brand-name {
    color: var(--blue-dark);
}

.brand-tag {
    font-size: .62rem;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .75);
    transition: color .4s ease;
    display: block;
}

body.scrolled .brand-tag {
    color: #888;
}

.desktop-links {
    gap: .4rem;
}

.desktop-links a {
    font-weight: 500;
    color: inherit;
    text-decoration: none;
    padding: .5rem .9rem;
    position: relative;
}

.desktop-links a::after {
    content: '';
    position: absolute;
    left: .9rem;
    right: .9rem;
    bottom: .15rem;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.desktop-links a:hover::after,
.desktop-links a.active::after {
    transform: scaleX(1);
}

.desktop-links .nav-item {
    position: relative;
}

.desktop-links .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: none;
    border: none;
}

.desktop-links .dropdown-toggle i {
    font-size: .7rem;
    transition: transform .3s ease;
}

.desktop-links .dropdown-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.desktop-links .dropdown-menu {
    border: none;
    border-radius: 14px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .14);
    padding: .6rem;
    margin-top: .7rem !important;
    min-width: 240px;
}

.desktop-links .dropdown-item {
    border-radius: 9px;
    padding: .7rem 1rem;
    font-weight: 500;
    font-size: .92rem;
    color: var(--dark);
}

.desktop-links .dropdown-item:hover,
.desktop-links .dropdown-item:focus,
.desktop-links .dropdown-item.active {
    background: rgba(247, 148, 29, .1);
    color: var(--orange-dark);
}

.nav-toggler {
    width: 34px;
    height: 22px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
}

.nav-toggler span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: currentColor;
}

.nav-toggler span:nth-child(1) {
    top: 0;
}

.nav-toggler span:nth-child(2) {
    top: 9px;
}

.nav-toggler span:nth-child(3) {
    top: 18px;
}

@media (max-width:991.98px) {
    .advanced-nav {
        background: white;
        backdrop-filter: blur(10px);
    }

    body.scrolled .advanced-nav {
        background: rgba(255, 255, 255, .95);
    }
}

.premium-offcanvas {
    background: linear-gradient(160deg, #1c1c1c 0%, #2b2b2b 100%);
    color: #fff;
    width: 300px;
    max-width: 85vw;
    z-index: 1071;
}

.offcanvas-backdrop {
    z-index: 1070;
}

.premium-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.offcanvas-nav li a {
    display: block;
    color: #fff !important;
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 600;
    padding: .8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.offcanvas-nav li a:hover {
    color: var(--orange);
    padding-left: .4rem;
}

.offcanvas-nav li a.services-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.offcanvas-nav li a.services-toggle i {
    font-size: .95rem;
    transition: transform .3s ease;
}

.offcanvas-nav li a.services-toggle[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.offcanvas-subnav {
    list-style: none;
    padding: 0 0 0 1rem;
    margin: 0;
}

.offcanvas-subnav li a {
    display: block;
    color: #c9c9c9 !important;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: .7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.offcanvas-subnav li a:hover {
    color: var(--orange) !important;
}

.offcanvas-contact a {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #c9c9c9;
    text-decoration: none;
    font-size: .9rem;
    margin-bottom: .8rem;
}

.offcanvas-contact a:hover {
    color: var(--orange);
}

.offcanvas-social {
    margin-top: 1.5rem;
    display: flex;
    gap: .9rem;
}

.offcanvas-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.offcanvas-social a:hover {
    background: var(--orange);
    border-color: var(--orange);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(26px);
    }

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

.hero-section {
    height: calc(100vh + 55px);
    display: flex;
    flex-direction: column;
}

.hero-flex {
    flex: 1;
    display: flex;
    position: relative;
    overflow: hidden;
}

.hero-orange {
    background: linear-gradient(155deg, var(--orange) 0%, var(--orange-dark) 100%);
    color: #fff;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 150px 3rem 3rem 12px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
    position: relative;
    z-index: 2;
}


@media (min-width: 576px) {
    .hero-orange {
        padding-left: calc((100vw - 540px) / 2 + 12px);
    }
}

@media (min-width: 768px) {
    .hero-orange {
        padding-left: calc((100vw - 720px) / 2 + 12px);
    }
}

@media (min-width: 992px) {
    .hero-orange {
        padding-left: calc((100vw - 960px) / 2 + 12px);
    }
}

@media (min-width: 1200px) {
    .hero-orange {
        padding-left: calc((100vw - 1140px) / 2 + 12px);
    }
}

@media (min-width: 1400px) {
    .hero-orange {
        padding-left: calc((100vw - 1320px) / 2 + 12px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .35);
    padding: .45rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    width: fit-content;
    margin-bottom: 1.5rem;
    animation: fadeUp .8s ease both;
}

.hero-orange h1 {
    font-weight: 800;
    font-size: 3.2rem;
    line-height: 1.22;
    margin: 0 0 1.1rem;
    animation: fadeUp .8s ease .15s both;
}

.hero-sub {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .92);
    max-width: 480px;
    margin-bottom: 2rem;
    animation: fadeUp .8s ease .3s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeUp .8s ease .45s both;
}

.btn-hero-white {
    background: #fff;
    color: var(--orange-dark) !important;
    font-weight: 600;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-hero-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, .25);
}

.btn-hero-outline {
    border: 1.5px solid rgba(255, 255, 255, .8);
    color: #fff !important;
    font-weight: 600;
    padding: .7rem 1.6rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .15);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    margin-left: -6%;
    background:
        linear-gradient(120deg, rgba(15, 15, 15, .6), rgba(74, 134, 198, .4)),
        repeating-linear-gradient(45deg, #444 0 2px, #555 2px 42px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.scroll-indicator {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 14px;
    z-index: 3;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #fff;
    animation: scrollDot 1.6s infinite;
}

@keyframes scrollDot {
    0% {
        top: 7px;
        opacity: 1;
    }

    70% {
        top: 22px;
        opacity: 0;
    }

    100% {
        top: 22px;
        opacity: 0;
    }
}

.hero-strip {
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1.05rem 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.05rem;
    flex-shrink: 0;
}

.hero-strip .dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
}

@media (min-width:768px) and (max-width:991.98px) {
    .hero-orange h1 {
        font-size: 2.4rem;
    }

    .hero-sub {
        font-size: .92rem;
        max-width: 100%;
    }

    .hero-badge {
        font-size: .72rem;
    }
}

@media (max-width:767.98px) {
    .hero-section {
        height: auto;
        min-height: calc(100vh + 30px);
    }

    .hero-flex {
        flex-direction: column;
    }

    .hero-orange {
        width: 100%;
        clip-path: none;
        padding: 130px 1.5rem 2rem;
        flex-shrink: 0;
    }

    .hero-orange h1 {
        font-size: 2.1rem;
    }

    .hero-image {
        margin-left: 0;
        flex: 0 0 260px;
        height: 260px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-strip {
        gap: 1.2rem;
        font-size: .8rem;
        letter-spacing: 1px;
        flex-wrap: wrap;
    }
}

@media (max-width:420px) {
    .hero-orange {
        padding: 200px 1.1rem 1.8rem;
    }

    .hero-orange h1 {
        font-size: 1.7rem;
    }

    .hero-sub {
        font-size: .92rem;
    }

    .hero-badge {
        font-size: .72rem;
        padding: .4rem .85rem;
    }

    .btn-hero-white,
    .btn-hero-outline {
        padding: .6rem 1.3rem;
        font-size: .9rem;
    }

    .stat-item {
        flex: 1 1 100%;
        border-right: none !important;
    }

    .section-heading h2 {
        font-size: 1.4rem;
    }
}

.stats-section {
    margin-top: -55px;
    position: relative;
    z-index: 5;
    padding: 0 0 4rem;
}

.stats-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, .14);
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
}

.stat-item {
    flex: 1 1 240px;
    text-align: center;
    padding: 2.3rem 1.2rem;
    border-right: 1px solid #f0f0f0;
    transition: all .3s ease;
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    background: #fdf6ec;
}

.stat-item i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: .7rem;
    display: inline-block;
}

.stat-item h4 {
    font-weight: 700;
    color: var(--dark);
    font-size: .95rem;
    margin: 0;
    line-height: 1.4;
}

@media (max-width:767.98px) {
    .stats-section {
        margin-top: -56px;
        padding-bottom: 2.5rem;
    }

    .stat-item {
        flex: 1 1 50%;
        border-bottom: 1px solid #f0f0f0;
        padding: 1.6rem 1rem;
    }

    .stat-item h4 {
        font-size: .82rem;
    }
}

.clients-strip {
    padding: 2.5rem 0 3rem;
    text-align: center;
}

.clients-strip h6 {
    color: #999;
    letter-spacing: 2px;
    font-size: .78rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

.clients-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .9rem;
}

.client-chip {
    padding: .5rem 1.3rem;
    border: 1px solid #e5e5e5;
    border-radius: 50px;
    font-weight: 600;
    color: #555;
    font-size: .85rem;
    transition: all .3s ease;
}

.client-chip:hover {
    border-color: var(--orange);
    color: var(--orange);
    transform: translateY(-2px);
}

@media (max-width:575.98px) {
    .clients-row {
        gap: .6rem;
    }

    .client-chip {
        padding: .4rem 1rem;
        font-size: .78rem;
    }
}

.services-section {
    padding: 2.5rem 0 5rem;
    background: #fff;
}

.service-card {
    height: 100%;
    text-align: left;
    border-radius: 16px;
    transition: all .35s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
}

.card-img-wrap {
    overflow: hidden;
    border-radius: 15px 15px 0 0;
    line-height: 0;
}

.card-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.service-card .card-img-wrap img {
    height: auto;
    object-fit: contain;
}

.service-card:hover .card-img-wrap img,
.detail-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.service-card-body {
    padding: 2rem 2rem 2.5rem;
}

.service-icon {
    width: 78px;
    height: 78px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--orange);
}

.service-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    color: var(--orange);
    font-weight: 500;
    padding: .4rem 0 .4rem 1.4rem;
    position: relative;
}

.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

@media (max-width:767.98px) {
    .services-section {
        padding: 1.5rem 0 3rem;
    }

    .service-card-body {
        padding: 1.6rem 1.5rem 2rem;
    }

    .card-img-wrap img {
        height: 170px;
    }

    .service-icon {
        width: 64px;
        height: 64px;
    }

    .service-icon i {
        font-size: 1.6rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }
}

.about-section {
    background: #fff;
}

.about-panel {
    background: var(--gray-bg);
    border-top-left-radius: 140px;
    padding: 5rem 0 4rem;
}

.about-panel h2 {
    font-weight: 800;
    color: var(--orange);
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.about-panel p {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.9;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-image {
    height: 260px;
    line-height: 0;
}

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

@media (max-width:767.98px) {
    .about-panel {
        border-top-left-radius: 70px;
        padding: 3.5rem 0 2.5rem;
    }

    .about-panel p {
        font-size: .95rem;
        line-height: 1.8;
    }

    .about-image {
        height: 180px;
    }
}

.section-tag {
    display: inline-block;
    background: rgba(247, 148, 29, .12);
    color: var(--orange-dark);
    font-weight: 700;
    font-size: .75rem;
    letter-spacing: 2px;
    padding: .4rem 1.1rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-heading h2 {
    font-weight: 800;
    color: var(--dark);
    font-size: 2.1rem;
    margin-bottom: .5rem;
}

.detail-section {
    padding: 5rem 0;
    background: #fff;
}

.detail-section-alt {
    background: var(--gray-bg);
}

.detail-intro p {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.85;
}

.detail-card {
    position: relative;
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    transition: all .35s ease;
}

.detail-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
    border-color: transparent;
}

.detail-card-body {
    padding: 1.6rem 1.8rem 1.8rem;
}

.detail-num {
    position: absolute;
    top: -18px;
    left: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    box-shadow: 0 6px 14px rgba(74, 134, 198, .4);
}

.detail-card h4 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.15rem;
    margin: .8rem 0 1.1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
}

.detail-card h4 i {
    color: var(--orange);
    font-size: 1.3rem;
}

.detail-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-card ul li {
    color: #555;
    font-size: .92rem;
    line-height: 1.6;
    padding: .35rem 0 .35rem 1.3rem;
    position: relative;
}

.detail-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
}

.why-section {
    background: var(--dark);
    color: #fff;
    padding: 5rem 0;
}

.section-tag-light {
    background: rgba(255, 255, 255, .1);
    color: var(--orange);
}

.why-section h2 {
    font-weight: 800;
    color: #fff;
    margin-bottom: 1.6rem;
    font-size: 1.8rem;
}

.why-section .section-heading p {
    color: rgba(255, 255, 255, .7);
    max-width: 650px;
    margin: 0 auto;
}

.why-card {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    transition: all .3s ease;
}

.why-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: var(--orange);
    transform: translateY(-4px);
}

.why-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(247, 148, 29, .12);
    border: 1px solid rgba(247, 148, 29, .35);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 1.4rem;
    color: var(--orange);
}

.why-card h5 {
    color: #eee;
    font-size: .96rem;
    font-weight: 600;
    line-height: 1.45;
    margin: 0;
}

@media (max-width:575.98px) {
    .why-card {
        padding: 1.3rem 1.2rem;
        gap: .9rem;
    }

    .why-icon {
        width: 48px;
        height: 48px;
    }

    .why-icon i {
        font-size: 1.2rem;
    }

    .why-card h5 {
        font-size: .9rem;
    }
}

.cta-section {
    background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
    padding: 3.5rem 0;
}

.cta-section h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: .4rem;
}

.cta-section p {
    color: rgba(255, 255, 255, .85);
    font-size: .98rem;
    margin: 0;
    max-width: 560px;
}

@media (max-width:767.98px) {
    .cta-section {
        padding: 2.5rem 0;
        text-align: center;
    }

    .cta-section .container {
        justify-content: center !important;
    }
}

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

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: #d5d5d5;
    font-size: .96rem;
    line-height: 1.5;
}

.check-list li i {
    color: var(--orange);
    font-size: 1.1rem;
    margin-top: .15rem;
    flex-shrink: 0;
}

.site-footer {
    background: #141414;
    color: #ccc;
    padding: 4rem 0 0;
}

.footer-block h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1.1rem;
    font-size: 1.05rem;
}

.footer-block p,
.footer-block a {
    color: #b8b8b8;
    text-decoration: none;
    font-size: .92rem;
    line-height: 1.7;
}

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

.footer-social {
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.footer-strip {
    margin-top: 3rem;
    background: var(--dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    padding: 1rem 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: .95rem;
    flex-wrap: wrap;
}

.footer-strip .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding: 1.2rem 1rem;
    font-size: .82rem;
    color: #888;
    background: #0f0f0f;
}

.page-header {
    padding: 170px 0 90px;
    background: linear-gradient(155deg, var(--orange) 0%, var(--orange-dark) 60%, var(--blue-dark) 130%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-weight: 800;
    font-size: 2.6rem;
    margin-bottom: .6rem;
    animation: fadeUp .8s ease both;
}

.page-header .breadcrumb-nav {
    font-size: .92rem;
    color: rgba(255, 255, 255, .85);
    animation: fadeUp .8s ease .15s both;
}

.page-header .breadcrumb-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.page-header .breadcrumb-nav a:hover {
    color: var(--dark);
}

.mission-vision-card {
    height: 100%;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all .35s ease;
}

.mission-vision-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
    transform: translateY(-6px);
}

.mission-vision-card .service-icon {
    margin-bottom: 1.3rem;
}

.mission-vision-card h3 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: .9rem;
}

.mission-vision-card p {
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.timeline-strip {
    background: var(--gray-bg);
}

.timeline-item {
    background: #fff;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e5e5e5;
    transition: all .3s ease;
}

.timeline-item:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.timeline-item .year {
    font-weight: 800;
    color: var(--orange);
    font-size: 1.6rem;
    display: block;
    margin-bottom: .4rem;
}

.timeline-item p {
    margin: 0;
    color: #555;
    font-size: .9rem;
    line-height: 1.6;
}

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 1.6rem 1.5rem;
    margin-bottom: 1.2rem;
    transition: all .3s ease;
}

.contact-info-card:hover {
    border-color: var(--orange);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .06);
}

.contact-info-card h5 {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    margin-bottom: .3rem;
}

.contact-info-card p,
.contact-info-card a {
    color: #666;
    font-size: .92rem;
    line-height: 1.6;
    margin: 0;
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--orange);
}

.contact-form-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .06);
}

.contact-form-card .form-label {
    font-weight: 600;
    color: var(--dark);
    font-size: .9rem;
    margin-bottom: .4rem;
}

.contact-form-card .form-control {
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: .7rem 1rem;
    font-size: .95rem;
}

.contact-form-card .form-control:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 .2rem rgba(247, 148, 29, .15);
}

.form-alert-error {
    background: rgba(220, 53, 69, .08);
    border: 1px solid rgba(220, 53, 69, .3);
    color: #b02a37;
    border-radius: 10px;
    padding: 1rem 1.3rem;
    margin-bottom: 1.5rem;
    font-size: .92rem;
}

.form-alert-error ul {
    margin: 0;
    padding-left: 1.2rem;
}

.thank-you-section {
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 1rem;
    background: var(--gray-bg);
}

.client-logo-card {
    height: 130px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem;
    transition: all .3s ease;
}

.client-logo-card:hover {
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
    transform: translateY(-4px);
}

.client-logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(247, 148, 29, .12);
    border: 2px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
}

.thank-you-icon i {
    font-size: 3rem;
    color: var(--orange);
}

.thank-you-section h2 {
    font-weight: 800;
    color: var(--dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.thank-you-section p {
    color: #555;
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

@media (max-width:767.98px) {

    .detail-section,
    .why-section {
        padding: 3rem 0;
    }

    .section-heading h2 {
        font-size: 1.6rem;
    }

    .detail-card-body {
        padding: 1.4rem 1.4rem 1.4rem;
    }

    .card-img-wrap img {
        height: 170px;
    }

    .why-section h2 {
        font-size: 1.4rem;
    }

    .site-footer {
        padding-top: 2.5rem;
        text-align: center;
    }

    .footer-social {
        align-items: center;
    }

    .footer-block p,
    .footer-block a {
        justify-content: center;
    }

    .page-header {
        padding: 130px 0 60px;
    }

    .page-header h1 {
        font-size: 1.9rem;
    }

    .mission-vision-card {
        padding: 2rem 1.5rem;
    }

    .contact-form-card {
        padding: 1.8rem 1.4rem;
    }

    .thank-you-section {
        padding: 3rem 1rem;
    }

    .thank-you-section h2 {
        font-size: 1.7rem;
    }
}
