@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&display=swap');

:root {
    --theme-color: #f0920e;
    --secondary-theme: #4e5559;
    --white-color: #fff;
    --black-color: #000;
    --navy: #0d1f3c;
    --blue: #1a4080;
    --accent: #e8a020;
    --light: #f4f7fc;
    --white: #fff;
    --muted: #6b7c99;
    --border: #dce6f5
}

body {
    font-family: "Google Sans", sans-serif;
    font-size: 16px;
    line-height: 24px
}

a {
    text-decoration: none;
    color: inherit
}

.py-6 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important
}

.bg-gray {
    background-color: #f2f4fa
}

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

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

small {
    display: block;
    margin-top: .25rem;
    font-size: 13px
}

.boxShadow {
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.07)
}

.btnMan {
    display: inline-block;
    padding: .75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border: 2px solid var(--theme-color);
    transition: color .5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--theme-color);
    background: var(--white-color)
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--theme-color);
    height: 150px;
    width: 250px;
    border-radius: 50%
}

.btnMan:hover {
    color: #fff
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all .7s
}

.btnMan:hover:before {
    top: -30px;
    left: -30px
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0
}

.cf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: var(--white);
    border: 0;
    border-radius: 10px;
    padding: 13px 30px;
    font-family: 'DM Sans', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s
}

.cf-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(13, 31, 60, .25)
}

.section-pad {
    padding: 60px 0
}

header {
    padding: .75rem 0;
    position: absolute;
    width: 100%;
    z-index: 9
}

.navbar {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 999;
    border-radius: .5rem;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all .3s ease
}

.bannerPanel .navbar.scrolled {
    top: 8px;
    width: 88%;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12)
}

.bannerPanel .logo img,
.offcanvas-header img {
    transition: all .3s ease
}

.bannerPanel .navbar.scrolled .logo img {
    height: 42px
}

@media(max-width:991px) {
    .bannerPanel .navbar {
        width: calc(100% - 20px);
        top: 10px;
        border-radius: 12px
    }
}

.navbar .navbar-brand>img {
    width: 100px
}

.navbar .nav-link {
    text-decoration: none;
    color: #fff;
    padding: .75rem .25rem !important;
    margin: 0 10px;
    font-size: 15px;
    position: relative;
    text-transform: uppercase
}

.navbar .nav-item:hover .nav-link {
    color: var(--theme-color)
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    z-index: 999;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    background-color: var(--secondary-theme);
    transition: all ease-in-out .2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown .45s ease-in-out
}

.scroll-on .dropdown-menu a,
.scroll-on .dropdown-submenu a {
    color: var(--footer-color);
    transition: all .25s ease-in-out
}

.scroll-on .dropdown-menu a:hover,
.scroll-on .dropdown-submenu a:hover {
    color: var(--theme-color)
}

@keyframes fadeInDown {
    0 {
        top: -30%
    }

    50% {
        top: -15%
    }

    100% {
        top: 0
    }
}

@media all and (min-width:992px) {
    .dropdown-toggle::after {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .23em solid;
        border-right: .23em solid transparent;
        border-bottom: 0;
        border-left: .23em solid transparent;
        margin-top: 0
    }

    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        color: var(--white-color);
        font-size: .6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: .5rem
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color)
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 0;
        min-width: 12rem;
        border-radius: 0;
        border: 0
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 3px 15px;
        text-decoration: none;
        font-size: 13px;
        font-weight: var(--fw-500)
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background-color: var(--white-color)
    }
}

@media all and (min-width:992px) {
    .dropdown-menu li {
        position: relative
    }

    .nav-item .submenu {
        display: none;
        position: absolute;
        left: 100%;
        top: -7px
    }

    .nav-item .submenu-left {
        right: 100%;
        left: auto
    }

    .dropdown-menu>li:hover {
        background-color: #f1f1f1
    }

    .dropdown-menu>li:hover>.submenu {
        display: block;
        opacity: 1;
        visibility: visible
    }
}

.social {
    display: flex;
    list-style: none;
    gap: 5px;
    margin: 0;
    padding: .75rem 0
}

.social li a {
    color: var(--white-color);
    font-size: 20px;
    font-size: 1.5rem;
    line-height: 1;
    display: block
}

.headMyaccount {
    display: flex;
    align-items: center;
    font-size: 12px
}

.headMyaccount .myaccount {
    position: relative
}

.headMyaccount .myaccount:before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: var(--bg-gray);
    left: 0;
    top: 0
}

.headMyaccount div:first-child:before {
    display: none
}

.headMyaccount h5 {
    font-size: 16px
}

.cartItem {
    position: absolute;
    width: 22px;
    height: 22px;
    background: #fff500;
    bottom: 10px;
    left: 20px;
    border-radius: 100%;
    font-weight: 600;
    text-align: center;
    color: var(--black-color)
}

@media(max-width:991px) {
    .dropdown-menu .dropdown-menu {
        margin-left: .7rem;
        margin-right: .7rem;
        margin-bottom: .5rem
    }
}

.hero-item {
    position: relative
}

.hero-item img {
    height: 100vh;
    min-height: 700px
}

.hero-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.30), rgba(0, 0, 0, 0.1));
    z-index: 1
}

.hero-content {
    position: absolute;
    top: 60%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 700px;
    color: #fff
}

.hero-content .sub-title {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #f8b400
}

.hero-content h2 {
    font-size: 60px;
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Playfair", serif
}

.hero-content p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap
}

.btn-theme {
    background: #f8b400;
    color: #111;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s
}

.btn-theme:hover {
    background: #fff;
    color: #111
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s
}

.btn-outline:hover {
    background: #fff;
    color: #111
}

@media(max-width:991px) {
    .hero-item img {
        height: 85vh;
        min-height: 600px
    }

    .hero-content {
        left: 20px;
        right: 20px;
        max-width: 100%
    }

    .hero-content h1 {
        font-size: 38px
    }

    .hero-content p {
        font-size: 15px
    }

    .btn-theme,
    .btn-outline {
        padding: 12px 24px;
        font-size: 14px
    }
}

.section-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0
}

.section-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    color: var(--navy);
    margin-bottom: 0
}

.title-rule {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
    margin: 14px 0 28px
}

.rr-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    height: 100%;
    transition: transform .25s, box-shadow .25s
}

.rr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13, 31, 60, .1)
}

.profile-section {
    padding: 60px 0
}

.profile-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 4px 24px rgba(13, 31, 60, .06)
}

.profile-card-header {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    padding: 36px 40px 28px;
    color: var(--white)
}

.profile-card-header h3 {
    color: var(--white);
    margin-bottom: 6px
}

.profile-card-body {
    padding: 36px 40px
}

.profile-card-body p {
    color: #3a4a6b;
    line-height: 1.8;
    margin-bottom: 16px
}

.stat-pill {
    background: var(--light);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border)
}

.stat-pill .num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--navy);
    line-height: 1
}

.stat-pill .num span {
    color: var(--accent)
}

.stat-pill .lbl {
    font-size: .78rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 500
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border)
}

.strength-item:last-child {
    border-bottom: 0;
    padding-bottom: 0
}

.strength-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--blue), #2d6aad);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem
}

.strength-item h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--navy)
}

.strength-item p {
    font-size: .85rem;
    color: var(--muted);
    margin: 0
}

.services-section {
    background: linear-gradient(160deg, #0a1829 0, #0d1f3c 50%, #122444 100%);
    padding: 60px 0
}

.services-section .section-title {
    color: var(--white)
}

.services-section .section-label {
    color: var(--accent)
}

.svc-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 28px 26px 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: background .25s, border-color .25s, transform .25s
}

.svc-card:hover {
    background: rgba(232, 160, 32, .1);
    border-color: rgba(232, 160, 32, .35);
    transform: translateY(-5px)
}

.svc-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(232, 160, 32, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 18px;
    transition: background .25s
}

.svc-card:hover .svc-icon-wrap {
    background: rgba(232, 160, 32, .28)
}

.svc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px
}

.svc-desc {
    font-size: .84rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75;
    flex-grow: 1;
    margin-bottom: 16px
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    letter-spacing: .04em;
    transition: gap .2s
}

.svc-link:hover {
    gap: 9px;
    color: var(--accent)
}

.market-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: .85rem;
    font-weight: 500;
    color: var(--navy);
    margin: 5px;
    transition: background .2s, color .2s
}

.market-tag:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent)
}

.market-tag i {
    font-size: .8rem;
    color: var(--muted)
}

.market-tag:hover i {
    color: var(--white)
}

.timeline-item {
    position: relative;
    padding-left: 28px;
    padding-bottom: 28px;
    border-left: 2px solid var(--border)
}

.timeline-item:last-child {
    border-left: 2px solid transparent;
    padding-bottom: 0
}

.timeline-dot {
    position: absolute;
    left: -9px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--accent)
}

.timeline-item h6 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

.timeline-item p {
    font-size: .88rem;
    color: var(--muted);
    margin: 0;
    line-height: 1.7
}

.promise-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px
}

.promise-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: rgba(232, 160, 32, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px
}

.promise-check i {
    color: var(--accent);
    font-size: .85rem
}

.promise-item p {
    margin: 0;
    color: #3a4a6b;
    line-height: 1.7;
    font-size: .95rem
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s, box-shadow .25s
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(13, 31, 60, .12)
}

.blog-thumb {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, .35)
}

.blog-body {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column
}

.blog-tag {
    display: inline-block;
    background: rgba(232, 160, 32, .12);
    color: var(--accent);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 12px
}

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.45
}

.blog-excerpt {
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px
}

.blog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .78rem;
    color: var(--muted)
}

.blog-meta i {
    margin-right: 4px
}

.blog-read {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: gap .2s
}

.blog-read:hover {
    gap: 8px;
    color: var(--accent)
}

.client-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    border:1px solid #eef2f7;
    transition:.35s ease;
    height:100%;
    cursor:pointer;
    box-shadow:0 8px 25px rgba(15,23,42,.04);
}

.client-card:hover{
    transform:translateY(-8px);
    border-color:#2563eb20;
    box-shadow:0 20px 40px rgba(37,99,235,.12);
}

.client-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    margin-bottom:18px;
    filter:grayscale(100%);
    transition:.3s;
}

.client-card:hover img{
    filter:grayscale(0%);
    transform:scale(1.08);
}

.client-card h6{
    font-size:16px;
    font-weight:700;
    color:#1e293b;
    margin-bottom:5px;
}

.client-card span{
    color:#64748b;
    font-size:13px;
    display:block;
}

.site-footer {
    background: linear-gradient(180deg, #0a1829 0, #0d1f3c 100%);
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    padding-top: 70px
}

.footer-top {
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white)
}

.footer-brand span {
    color: var(--accent)
}

.footer-about {
    color: rgba(255, 255, 255, .55);
    line-height: 1.8;
    font-size: .86rem;
    margin-bottom: 12px
}

.footer-tagline {
    font-style: italic;
    color: rgba(255, 255, 255, .35);
    font-size: .82rem
}

.footer-tagline i {
    color: var(--accent);
    opacity: .6
}

.footer-socials {
    display: flex;
    gap: 10px
}

.footer-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: 1rem;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s
}

.footer-social-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white)
}

.footer-heading {
    font-family: 'DM Sans', sans-serif;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px
}

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

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-size: .87rem;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color .2s, gap .2s
}

.footer-links a i {
    color: var(--accent);
    font-size: .85rem;
    transition: transform .2s
}

.footer-links a:hover {
    color: var(--white);
    gap: 8px
}

.footer-links a:hover i {
    transform: translateX(2px)
}

.footer-mini-text {
    color: rgba(255, 255, 255, .5);
    line-height: 1.75;
    font-size: .85rem;
    margin-bottom: 14px
}

.footer-mini-text strong {
    color: rgba(255, 255, 255, .8)
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 50px;
    padding: 4px 12px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .6)
}

.footer-badge i {
    color: var(--accent)
}

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

.footer-contact-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px
}

.fc-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 8px;
    background: rgba(232, 160, 32, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: .95rem
}

.fc-label {
    display: block;
    font-size: .72rem;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.fc-value {
    display: block;
    font-size: .85rem;
    color: rgba(255, 255, 255, .72)
}

.footer-bottom {
    padding: 22px 0;
    font-size: .82rem;
    color: rgba(255, 255, 255, .35)
}

.footer-bottom strong {
    color: rgba(255, 255, 255, .6)
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .2s
}

.footer-bottom-links a:hover {
    color: var(--accent)
}