/* 
===============================================
   Base Styles & Variables
=============================================== 
*/

:root {
    /* Color Palette */
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --text-color: #333333;
    --bg-color: #F4F6F8;
    --light-bg: #f8f9fa;
    --dark-bg: #212529;

    /* Typography */
    --font-inter: 'Inter', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
    --font-open-sans: 'Open Sans', sans-serif;
    --font-primary: var(--font-inter);
    /* Effects & Transitions */
    --transition-speed: 0.3s;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
}

a.brand-logo-wrap {
    width: 120px;
    height: 120px;
    display: flex;
    margin-bottom: -50px;
}

nav.navbar.navbar-expand-lg {
    background: var(--bg-color)
}

header a.nav-link {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 0.5px;
    color: #242424;
}

header.site-header {
    position: relative;
    z-index: 999;
}

section.hero-section {
    padding: 100px 0px;
    background: #000;
    position: relative;
}

section.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(254.9deg, rgba(0, 0, 0, 0) -13.25%, #000000 91.85%);
    z-index: 9;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.ctm-z-index {
    z-index: 9;
}

.hero-bg-img video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    background: #00276880;
    width: fit-content;
    height: 35px;
    border-radius: 10px;
    padding-top: 6px;
    padding-right: 10px;
    padding-bottom: 6px;
    padding-left: 10px;
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 0px;
    color: #fff;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-family: var(--font-roboto);
    font-weight: 900;
    font-size: 60px;
    line-height: 72px;
    letter-spacing: 0px;
}

.hero-subtitle {
    font-family: var(--font-open-sans);
    font-weight: 400;
    font-size: 16px;
    max-width: 430px;
}

.ctm-btn {
    width: fit-content;
    height: 50px;
    border-radius: 10px;
    padding-top: 16px;
    padding-right: 32px;
    padding-bottom: 16px;
    padding-left: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background: #FE0000;
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
}

span.trust-text {
    font-family: var(--font-open-sans);
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
}



/* ----------about section---------- */

section.about-section {
    padding: 100px 0px;
    position: relative;
}

.about-image-collage {
    padding-right: 50px;
}

h2.about-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 60px;
    line-height: 68px;
    letter-spacing: 0%;
    color: #002768;
}

p.about-text {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    letter-spacing: 0%;
}

h6.top-badge {
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 24px;
    line-height: 34.54px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #242424;
}

.about-image-collage {
    display: flex;
    justify-content: end;
    align-items: center;
}

.watermark-left {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 0;
    background-image: url(../img/bg-left.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left;
}

.watermark-right {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 250px;
    z-index: 1;
    background-image: url(../img/bg-right-bottom.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
}

.ctm-bullits {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #242424;
}

h5.ctm-italic {
    font-family: var(--font-inter);
    font-weight: 700;
    font-style: Italic;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #242424;
}

p.ctm-btm-italic {
    font-family: var(--font-inter);
    font-weight: 400;
    font-style: Italic;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0%;
    color: #242424;
}


/* ----------problem section---------- */

section.problems-section {
    background-color: #edeef0;
    padding: 70px 0px;
    background-image: url(../img/Section.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom right;
}

h2.section-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 60px;
    line-height: 110.00000000000001%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #002768;
}

.ctm-danger {
    color: #FF0000;
}

p.section-subtitle {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    color: #242424;
    margin: 0px;
}

.problem-card {
    box-shadow: 0px 1px 10px 0px #0000001A;
    max-width: 570px;
    border-radius: 10px;
}

.tracking-wide {
    font-family: var(--font-poppins);
    font-weight: 500;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: uppercase;
}

p.problem-desc {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0px;
    color: #6C6C72;
}

.problem-icon {
    margin-top: 1px;
}

section.features-section {
    padding: 70px 0px;
    background: url(../img/sec-4-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

h2.section-title.mb-3.lh-12 {
    text-align: left;
}

p.feature-subtitle {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 18px;
    color: #262626;
}

.feature-card {
    border: 1px solid #0027684D;
    box-shadow: 0px 2px 4px -1px #0000000D;
    width: 283px;
    border-radius: 20px;
    border-width: 1px;
    padding: 10px 34px !important;
}

h5.ctm-f-head {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #262626;
}

p.ctm-f-desc {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #525252;
}

a.ctm-btn-f {
    width: 283px;
    border-radius: 10px;
    padding-top: 22px;
    padding-right: 50px;
    padding-bottom: 22px;
    padding-left: 50px;
    background: #FE0000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: center;

}

.features-section img.img-fluid.w-100 {
    padding-left: 75px;
}


/* ----------how it works section---------- */

section.how-it-works-section {
    padding: 0px 0px 50px 0px;
}

section.how-it-works-section .container {
    max-width: 1070px;
}



h5.ctm-how-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #232233;
}

p.ctm-how-desc {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #6C6C72;
    margin-bottom: 0px;
}

.step-card {
    box-shadow: 0px 1px 10px 0px #0000001A;
    background: #FFFFFF;
    border-radius: 20px;
}


/* -------- extra features section -------- */



.extra-features-section {
    padding: 70px 0px 100px 0px;
    background: url(../img/bg-extra.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

h2.section-title-large {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 60px;
    line-height: 75px;
    letter-spacing: 0%;
    text-align: center;
}

p.ctm-extra-desc {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    margin: 0px;
}

.ctm-width-extra {
    max-width: 1070px;
    margin: 0 auto;
}

.extra-feature-card {
    border: 1px solid #0027684D;
    width: 320px;
    border-radius: 20px;
    border-width: 1px;
    margin: 0 auto;
}

h5.ctm-extra-head {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0%;
    color: #002768;
    margin-top: 10px;
}

p.ctm-extra-b-desc {
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    color: #525252;
    margin-bottom: 0px;
}






/* -----------pricing section---------- */


.pricing-card.basic-plan {
    background: #002768;
    border: 1px solid #1869CC33;
    backdrop-filter: blur(23px);
    opacity: 1;
    border-radius: 16px;
    border-width: 1px;
}

section.pricing-section {
    padding: 100px 0px;
}

a.btn.w-100.upgrade-btn.py-3.mt-auto.rounded-3 {
    background: #1A77E9;
    opacity: 1;
    border-radius: 10px;
    color: #F6F6F6;
    font-family: var(--font-poppins);
    font-weight: 300;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
}

ul.pricing-list {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
}

.pro-plan-wrapper {
    background: #FE0000;
    border-radius: 20px;
}

.pricing-card.pro-plan {
    background: #002768;
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.pro-badge {
    font-family: Poppins;
    font-weight: 600;
    font-size: 20px;
    line-height: normal;
    letter-spacing: 0%;
    text-align: center;
    vertical-align: middle;
    text-transform: capitalize;
    display: flex;
    justify-content: center;
    align-items: center;
}

a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

a.btn svg {
    width: 15px;
}




/* ----------team section---------- */


section.roles-section {
    background: #edeef0;
    padding: 70px 0px;
}

.role-img-wrapper {
    padding: 20px;
    height: 390px;
    overflow: hidden;
    object-fit: cover;
}

img.w-100.role-img-cover {
    height: 390px;
}

.ctm-role-width {
    max-width: 1170px;
    margin: 0 auto;
}









/* --------------cta section-------------- */

section.cta-section {
    background: #fff;
    padding: 100px 0px;
}

.cta-card {
    background: #002768;
    max-width: 1150px;
    border-radius: 20px;
    padding-top: 50px;
    padding-right: 30px;
    padding-bottom: 50px;
    padding-left: 30px;
    margin: 0 auto;
}

.cta-section span.badge {
    width: 187px;
    opacity: 1;
    border-radius: 39px;
    padding-top: 5px;
    padding-right: 14px;
    padding-bottom: 5px;
    padding-left: 14px;
    background: #003388;
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

h3.ctm-cta-title {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 48px;
    letter-spacing: 0%;
    text-align: left;
    color: #fff;
}

p.ctm-cta-desc {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: left;
    color: #fff;
    margin-bottom: 0px;
}

input.form-control.cta-input {
    opacity: 1;
    border-radius: 10px;
    padding-top: 18px;
    padding-right: 20px;
    padding-bottom: 18px;
    padding-left: 30px;
    background: #003388;
    color: #fff;
    font-family: var(--font-inter);
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0%;
    text-align: left;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

button.btn.cta-submit-btn {
    width: 80px;
    height: 80px;
    opacity: 1;
    border-radius: 10px;
    gap: 10px;
    padding: 22px;
    background: #001537;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

input.form-control.cta-input::placeholder {
    color: #fff;
}
















/* -----------footer-----------     */


a.f-link {
    font-family: var(--font-roboto);
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0.5px;
    color: #242424;
    padding: 0px 1.5rem;
}

.ctm-f-logo {
    width: 120px;
    height: 120px;
    display: flex;
}


.phones-container {
    padding-right: 50px;
}

.phones-container img {
    max-width: 410px;
    margin-left: auto;
    display: block;
}




















/* ----------- Awwwards Premium Additions ----------- */

/* 2. Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: #a3a3a3;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FE0000;
}

/* ----------- Award-Winning Mobile Menu ----------- */
.menu-btn {
    background: transparent;
    z-index: 10000;
    position: relative;
    padding: 10px;
}

.custom-hamburger {
    width: 35px;
    height: 22px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.custom-hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #002768;
    border-radius: 3px;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.menu-btn.active .custom-hamburger span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

.menu-btn.active .custom-hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .custom-hamburger span:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
}

body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
    touch-action: none !important;
}

.role-content {
    background: #F9F4F4;
}

.role-hed {
    font-family: var(--font-poppins);
    font-weight: 800;
    font-size: 24px;
    line-height: 29.9px;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 5px !important;
    color: #1F1F1F;
}

.role-des {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin: 0px !important;
    color: #494949;
}

.p-1 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.pr-2 {
    font-family: var(--font-poppins);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0%;
    vertical-align: middle;
}

.inc-hed {
    font-family: var(--font-poppins);
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
}

.pp {
    font-family: var(--font-poppins);
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    letter-spacing: 0%;
    vertical-align: middle;
}

@media (max-width: 991px) {
    #mainNav {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #002768;
        z-index: 9999;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        clip-path: circle(0px at 90% 5%);
        transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    }

    #mainNav.active {
        clip-path: circle(150% at 90% 5%);
    }

    #mainNav .navbar-nav {
        flex-direction: column;
        align-items: center;
        margin: 0 !important;
        padding: 0;
    }

    #mainNav .nav-link {
        font-size: 32px;
        font-family: var(--font-poppins);
        font-weight: 700;
        color: #FFF !important;
        margin: 8px 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    #mainNav.active .nav-link {
        opacity: 1;
        transform: translateY(0);
    }

    #mainNav.active .custom-nav-links:nth-of-type(1) .nav-item:nth-child(1) .nav-link {
        transition-delay: 0.2s;
    }

    #mainNav.active .custom-nav-links:nth-of-type(1) .nav-item:nth-child(2) .nav-link {
        transition-delay: 0.3s;
    }

    #mainNav.active .custom-nav-links:nth-of-type(1) .nav-item:nth-child(3) .nav-link {
        transition-delay: 0.4s;
    }

    #mainNav.active .custom-nav-links:nth-of-type(2) .nav-item:nth-child(1) .nav-link {
        transition-delay: 0.5s;
    }

    #mainNav.active .custom-nav-links:nth-of-type(2) .nav-item:nth-child(2) .nav-link {
        transition-delay: 0.6s;
    }

    #mainNav.active .custom-nav-links:nth-of-type(2) .nav-item:nth-child(3) .nav-link {
        transition-delay: 0.7s;
    }

    .menu-btn.active .custom-hamburger span {
        background: #FE0000;
    }
}

/* ----------- Custom Cursor ----------- */
body,
a,
button,
input,
select,
textarea,
.nav-link,
.navbar-toggler,
.ctm-btn {
    cursor: none !important;
}

.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 99999;
    pointer-events: none;
    will-change: transform;
    mix-blend-mode: difference;
}

.cursor-dot {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #FFF;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: transparent;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.cursor-outline.hovering {
    width: 70px;
    height: 70px;
    background-color: #FFF;
    border-color: transparent;
}

.cursor-dot.hovering {
    width: 0;
    height: 0;
    background-color: transparent;
}

@media (max-width: 769px) {

    /* Reset cursor for mobile */
    body,
    a,
    button,
    input,
    select,
    textarea,
    .nav-link,
    .navbar-toggler,
    .ctm-btn {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }

    /* Disable all AOS delays on mobile to ensure fast stacking animations */
    [data-aos] {
        transition-delay: 0s !important;
    }

    html body h2 {
        font-size: 25px !important;
        line-height: 32px !important;
    }

    h1.hero-title.mb-4.text-white {
        font-size: 42px !important;
        line-height: normal !important;
    }

    section.hero-section {
        padding: 40px 0px;
    }

    img.person {
        width: 85px;
    }

    .about-image-collage {
        padding-right: 0px !important;
        margin-bottom: 50px;
    }

    .hero-badge {
        font-size: 14px !important;
    }

    p {
        font-size: 14px !important;
        line-height: normal !important;
    }

    .watermark-left,
    .watermark-right {
        width: 100px;
        height: 85px !important;
    }

    .ctm-bullits,
    h6.top-badge {
        font-size: 16px !important;
        line-height: 16px !important;
    }

    h2.section-title.mb-3 br {
        display: none;
    }

    .tracking-wide {
        font-size: 16px !important;
        line-height: 22px !important;
    }

    .feature-card {
        width: 100% !important;
    }

    .features-section img.img-fluid.w-100 {
        padding-left: 0px !important;
    }

    a.ctm-btn-f {
        width: 100% !important;
        font-size: 16px !important;
        padding: 14px 20px !important;
    }

    section.features-section,
    section.how-it-works-section {
        padding-bottom: 0px !important;
    }

    .extra-features-section,
    section.cta-section,
    section.roles-section,
    section.pricing-section {
        padding: 50px 0px !important;
    }

    a.navbar-brand.d-lg-none img {
        width: 100px;
        margin-bottom: -45px;
    }

    input.form-control.cta-input,
    button.btn.cta-submit-btn {
        padding: 14px 17px !important;
        height: auto !important;
    }

    .phones-container img {
        max-width: 100% !important;
    }

    .phones-container {
        padding-right: 0px !important;
    }

    .ftf {
        display: flex;
        flex-direction: column-reverse;
        gap: 8px;
    }

    .ctm-f-logo {
        margin-bottom: 0px;
        margin-top: 20px;
    }

    a.f-link {
        font-size: 14px !important;
    }

    footer .custom-nav-links {
        margin: 0 auto !important;
        justify-content: center !important;
        align-items: center !important;
    }

    section {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .footer-bottom {
        margin-top: 40px !important;
    }

    .footer-bottom {
        margin-top: 40px !important;
        background: #000;
        border-radius: 10px;
        color: #fff;
        padding: 16px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: 12px;
        color: #fff !important;
    }










}