/* ================== Imports ================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ================== Root Variables ================== */
:root {
    --primary-color: #05B6FF;
    --primary-black: #0A1628;
    --primary-white: #FFFFFF;
    --primary-gray: #C7D2FE;
    --primary-gray1: #64748B;
    --primary-gray2: #475569;


    --navbar-color: #E0E7FF;


    --bg-light: #fff;
    --bg-dark: linear-gradient(270deg, #0A1628 50%, #1A2B47 150%);


    --button-primary: linear-gradient(315deg, #05B6FF 64.64%, #05B6FF 135.36%);
}

/* ================== Reset & Common ================== */
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    display: inline-block;
}

li {
    list-style: none;
}

body {
    font-family: "Inter", sans-serif;
}

.btn {
    border: 0;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
}

.btn-primary {
    background: var(--button-primary);
    border: 0;
    padding: 8px 16px;
    font-size: 14px;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color);
}

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

.badge-danger {
    display: inline-block;
    width: 72px;
    height: 28px;
    opacity: 1;
    border-radius: 20px;
    background: #EF444433;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #EF4444;
}

.badge-success {
    display: inline-block;
    width: 72px;
    height: 28px;
    opacity: 1;
    border-radius: 20px;
    background: #10B98133;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #10B981;
}

.badge-info {
    display: inline-flex;
    width: 230px;
    height: 36px;
    opacity: 1;
    border-radius: 20px;
    background: #3B82F633;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #3B82F6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}



/* ******************************
    Navbar-Top-Start
********************************/
.navbar {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px transparent;
    z-index: 999;
    transition: all linear 0.3s;
    background: #0A1628F2 !important;
}

.navbar.navbar-fixed {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0px 0px 3px 1px rgba(59, 130, 246, .2) !important;
    animation: navbarScrollAnimation linear 0.25s;
}

@keyframes navbarScrollAnimation {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}


.navbar ul li a {
    padding: 0;
    padding-inline: 12px !important;
    font-size: 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navbar-color);
}

.navbar ul li a:hover {
    color: var(--primary-white);
}



.navbar-brand {
    align-items: center;
    display: flex;
    gap: 8px;
    color: #FFFFFF;
    font-weight: 700;
}

.navbar-brand:hover {
    color: #FFFFFF;
}

.navbar-brand img {
    height: 30px;
}


.navbar-brand span {
    color: #1F2937;
    font-size: 18px;
    margin-top: 7px;
}

.toggler-icon {
    color: var(--primary-white);
}

/* ******************************
    Navbar-Top-End
********************************/



/* ******************************
    Hero-Top-Start
********************************/

.hero {
    background: var(--bg-dark);
    padding-bottom: 60px;
    padding-top: 130px;
}

.hero h1 {
    color: var(--primary-white);
    font-weight: 700;
    font-size: 54px;
}

.hero p {
    color: var(--primary-gray);
    font-weight: 400;
    font-size: 18px;
}

.hero .hero-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hero .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ******************************
    Hero-Top-End
********************************/

/* ******************************
    Why-Section-Start
********************************/
.why {
    padding-block: 60px;
}


.heading-text h2 {
    color: var(--primary-black);
    font-size: 36px;
    font-weight: 700;
}

.heading-text p {
    color: var(--primary-gray1);
    font-size: 16px;
    font-weight: 400;
}

.why-item {
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: linear-gradient(315deg, #F8FAFC 64.64%, #F1F5F9 135.36%);
    padding: 24px;
    text-align: center;

}

.why-item h4 {
    font-weight: 700;
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.why-item h5 {
    font-weight: 400;
    font-size: 16px;
    color: var(--primary-gray2);
}

/* ******************************
    Why-Section-End
********************************/


/* ******************************
    AI-Section-End
********************************/

.ai {
    padding-block: 60px;
    background: #0B0E14;
}


.heading-text-1 h2 {
    color: var(--primary-white);
    font-size: 36px;
    font-weight: 700;
}

.heading-text-1 h2 span {
    color: var(--primary-color);
}

.heading-text-1 p {
    color: var(--primary-gray);
    font-size: 16px;
    font-weight: 400;
}

.ai-item {
    border-radius: 12px;
    padding: 16px;
    background: linear-gradient(315deg, #121721 64.64%, #0E121B 135.36%);
    height: 100%;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.ai-item:hover {
    background: linear-gradient(315deg, #1A2230 64.64%, #121829 135.36%);
}

.ai-item .icon {
    border-radius: 8px;
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0F2737;
    color: var(--primary-color);
    transition: background 0.3s ease, transform 0.3s ease;
}

.ai-item:hover .icon {
    background: #0D3A58;
    transform: scale(1.05);
}


.ai-item h4 {
    color: var(--primary-white);
    font-size: 16px;
    font-weight: 600;
    margin-top: 14px;
}

.ai-item p {
    color: var(--primary-gray1);
    font-size: 12px;
}

/* ******************************
    AI-Section-End
********************************/

/* ******************************
    Agent-Section-Start
********************************/
.agent {
    padding-block: 60px;
    background: linear-gradient(270deg, #F8FAFC 50%, #FFFFFF 150%);

}


.heading-text h2 {
    color: var(--primary-black);
    font-size: 36px;
    font-weight: 700;
}

.heading-text p {
    color: var(--primary-gray1);
    font-size: 16px;
    font-weight: 400;
}

.agent-item {
    background: var(--primary-white);
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    padding: 28px;
}

.agent-item .agent-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.agent-item .agent-header h5 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}

.agent-item .agent-body {
    font-weight: 400;
    font-size: 16px;
    padding: 0;
    color: var(--primary-gray2);
    margin-top: 16px;
}

.agent-item .agent-body i {
    margin-right: 8px;
    color: #10B981;
}

.agent-item .agent-body li {
    margin-bottom: 6px;
}

/* ******************************
    Agent-Section-End
********************************/

/* ******************************
    Pricing-Section-Start
********************************/

.pricing {
    padding-block: 60px;
}

.pricing-card {
    border: 2px solid #E2E8F0;
    padding: 32px;
    border-radius: 16px;
    height: 100%;
    transition: .3s;
}

.pricing-card:hover {
    border-color: #05B6FF;
    box-shadow: 0px 16px 48px 0px #00000019;

}

.pricing-card .pricing-card-header {
    text-align: center;
}

.pricing-card .pricing-card-header h4 {
    font-weight: 700;
    font-size: 20px;
    color: #0A1628;
}

.pricing-card .pricing-card-header h5 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 42px;
}

.pricing-card .pricing-card-header h5 strong {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-card .pricing-card-header h5 span {
    font-size: 16px;
    color: var(--primary-gray1);
    margin-left: 8px;
    font-weight: 400;
}

.pricing-card .pricing-card-header p {
    font-size: 15px;
    color: var(--primary-gray1);
    font-weight: 400;
}


.pricing-card-body {
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    color: var(--primary-gray2);
    margin-top: 24px;
}

.pricing-card-body i {
    margin-right: 8px;
    color: #10B981;
}

.pricing-card-body li {
    margin-bottom: 14px;
}

/* ******************************
    Pricing-Section-End
********************************/

/* ******************************
    Dealership-Section-Start
********************************/

.dealership {
    padding-block: 80px;
    background: linear-gradient(270deg, #0A1628 50%, #1A2B47 150%);

}

.dealership-item {
    text-align: center;
    border: 2px solid #3B82F633;
    border-radius: 16px;
    padding: 28px;
    height: 100%;
    padding-block: 36px;
    transition: .25s;
}

.dealership-item:hover {
    border-color: #05B6FF;
}

.dealership-item h4 {
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-white);
}

.dealership-item ul {
    padding: 0;
}

.dealership-item ul li {
    margin-top: 36px;
    font-size: 16px;
    color: var(--primary-gray);
}

.dealership-item ul li {
    margin-top: 48px;
    font-size: 16px;
    color: var(--primary-gray);
}

.dealership-item ul li i {
    margin-right: 8px;
    color: var(--primary-gray);
}

.dealership-item.red ul li i {
    color: #EF4444;
}

.dealership-item.green ul li i {
    color: #10B981;
}

/* ******************************
    Dealership-Section-End
********************************/

/* ******************************
    Revenue-Section-End
********************************/
.footer {
    padding-block: 60px;
    background: #0B0E14;
    position: relative;
    z-index: 11;
    overflow: hidden;
}

.footer::after {
    content: '';
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 250px;
    width: 250px;
    background: #3a7992;
    filter: blur(120px);
    opacity: 0.6;
    z-index: -1;
}


.footer .no-credit {
    color: var(--primary-gray1);
    font-size: 12px;
    margin-top: 16px;
}

.footer-logo {
    height: 30px;
    color: #fff;
    font-weight: 700;
    font-style: 20px;
}

.footer-logo img {
    height: 100%;
    margin-right: 3px;
}

.footer-para {
    color: var(--primary-gray1);
    font-size: 14px;
    margin-top: 12px;
    line-height: 26px;
}

.footer-link-header {
    color: var(--primary-white);
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-links {
    padding: 0;
}

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    color: var(--primary-gray1);
    font-size: 14px;
    transition: .25s;
}

.footer-links a:hover {
    color: var(--primary-white);
}

/* ******************************
    Revenue-Section-End
********************************/