:root{
    --primary:#2563EB;
    --primary-hover:#1D4ED8;
    --black:#000000;
    --white:#FFFFFF;
    --gray:#F8FAFC;
    --border:#E5E7EB;
    --blue:#051535;
    --primary-blue:#041436;
    --primary-light:#0b2b67;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter, Arial, sans-serif;
}

body{
    background:var(--white);
}

/* Header */

.navbar{
    width:100%;
    background:var(--black);
    position:sticky;
    top:0;
    z-index:1000;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.container{
    max-width:1400px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.nav-container{
    max-width:1400px;
    margin:auto;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Logo */

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
}

.logo img{
    width:200px;
}

.logo span{
    color:var(--white);
    font-size:22px;
    font-weight:700;
}

/* Navigation */

.nav-links{
    display:flex;
    gap:40px;
}

.nav-links a{
    text-decoration:none;
    color:var(--white);
    font-weight:500;
    transition:.3s;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:var(--primary);
    transition:.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

.nav-links a:hover::after{
    width:100%;
}

/* Button */

span.blue-text {
    color: #2563EB;
}

.demo-btn{
    background:var(--primary);
    color:var(--white);
    text-decoration:none;
    padding:15px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.demo-btn:hover{
    background:var(--primary-hover);
    transform:translateY(-2px);
}

/* ===========================
   HERO SECTION
=========================== */

.hero-container{
    max-width:1400px;
    margin:auto;
    padding:0 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

.hero-content{
    flex:1;
}

.hero-image{
    flex:1;
    display:flex;
    justify-content:flex-end;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero{
    padding:100px 0;
    min-height: 100vh;
    background-image: url('../images/home/Banner.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color:#fff;
}

.hero-content h1{
    font-size:40px;
    line-height:1.15;
    color:#fff;
    font-weight:800;
    margin-bottom:24px;
}

.hero-content h1 span{
    color:#386399;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color: #a19898d9;
    max-width:620px;
    margin-bottom:40px;
}

.hero-tag{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:24px;
}

.btn-primary{
    background:#fff;
    color:#2563EB;
    text-decoration:none;
    padding:15px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-primary:hover{
    background:#F3F4F6;
    transform:translateY(-3px);
}

.btn-secondary{
    text-decoration:none;
    color:#fff;
    border:2px solid rgba(255,255,255,.5);
    padding:15px 32px;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.btn-secondary:hover{
    background:#fff;
    color:#2563EB;
    border-color:#fff;
}

/* Right Image */

.hero-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-image img{
    width:100%;
    max-width:600px;
    border-radius:18px;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 20px rgba(0, 229, 255, 0.8), 0 0 40px rgba(59, 130, 246, 0.6), 0 0 80px rgba(0, 229, 255, 0.25);
}

/* ===========================
   HOW IT WORKS
=========================== */

.how-it-works{
    padding:100px 24px;
    background:#F8FAFC;
}

.section-header{
    max-width:750px;
    margin:0 auto 70px;
    text-align:center;
}

.section-tag{
    display:inline-block;
    background:#DBEAFE;
    color:#2563EB;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}

.section-header h2{
    font-size:42px;
    color:#111827;
    margin-bottom:20px;
    line-height:1.2;
}

.section-header p{
    font-size:18px;
    color:#6B7280;
    line-height:1.8;
}

.use-case-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.card{
    background:#fff;
    padding:35px;
    border-radius:16px;
    border:1px solid #E5E7EB;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(37,99,235,.12);
}

.icon{
    font-size:42px;
    margin-bottom:20px;
}

.card h3{
    font-size:22px;
    color:#111827;
    margin-bottom:12px;
}

.card p{
    color:#6B7280;
    line-height:1.7;
}

/* ==========================
   WORKFLOW
========================== */

.workflow{
    padding:100px 24px;
    background:#ffffff;
}

.workflow-grid{
    max-width:1280px;
    margin:70px auto 0;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.workflow-card{
    background:#F8FAFC;
    border:1px solid #E5E7EB;
    border-radius:18px;
    padding:35px 30px;
    transition:.3s;
}

.workflow-card.blue-card {
    border-bottom: 4px solid #3d3dcc;
}

.workflow-card.blue-card:hover {
    border: 1px solid #3d3dcc;
    border-bottom: 4px solid #3d3dcc;
}

.workflow-card.green-card {
    border-bottom: 4px solid #008837;
}

.workflow-card.green-card:hover {
    border: 1px solid #008837;
    border-bottom: 4px solid #008837;
}

.workflow-card.violet-card {
    border-bottom: 4px solid #7c40bc;
}

.workflow-card.violet-card:hover {
    border: 1px solid #7c40bc;
    border-bottom: 4px solid #7c40bc;
}

.workflow-card.yellow-card {
    border-bottom: 4px solid #d0bb00;
}

.workflow-card.yellow-card:hover {
    border: 1px solid #d0bb00;
    border-bottom: 4px solid #d0bb00;
}

.flow-icon.blue-icon {
    background-color: #3d3dcc;
}

.flow-icon.green-icon {
    background-color: #008837;
}

.flow-icon.violet-icon {
    background-color: #7c40bc;
}

.flow-icon.yellow-icon {
    background-color: #d0bb00;
}


.workflow-card:hover{
    transform:translateY(-8px);
}

.step-number{
    width:60px;
    height:60px;
    background:#2563EB;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:25px;
}

.workflow-card h3{
    font-size:26px;
    color:#111827;
    margin-bottom:15px;
}

.workflow-card p{
    color:#6B7280;
    line-height:1.7;
    margin-bottom:20px;
}

.workflow-card ul{
    padding-left:18px;
}

.workflow-card li{
    margin-bottom:12px;
    color:#374151;
    line-height:1.6;
}

.flow-icon {
    width: 50px;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    margin-bottom: 20px;
}

/* ===========================
   MULTI CLIENT SECTION
=========================== */

.multi-access{
    padding:100px 24px;
    background:linear-gradient(135deg, #041436 0%, #091f5d 100%);
}

.dark{
    max-width:760px;
    margin:auto;
    text-align:center;
}

.dark h2{
    color:#fff;
    font-size:44px;
    margin-bottom:20px;
}

.dark p{
    color:rgba(255,255,255,.8);
    font-size:18px;
    line-height:1.8;
}

.dark .section-tag{
    background:rgba(255,255,255,.1);
    color:#fff;
    border:1px solid rgba(255,255,255,.15);
}

.multi-grid{
    max-width:1200px;
    margin:70px auto 0;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.feature-card{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.12);
    border-radius:20px;
    padding:40px;
    backdrop-filter:blur(10px);
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-8px);
    border-color:#3B82F6;
    background:rgba(255,255,255,.09);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:16px;
    background:#2563EB;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    margin-bottom:25px;
}

.feature-card h3{
    color:#fff;
    font-size:28px;
    margin-bottom:18px;
}

.feature-card p{
    color:rgba(255,255,255,.82);
    line-height:1.8;
    margin-bottom:25px;
}

.feature-card ul{
    list-style:none;
    padding:0;
}

.feature-card li{
    color:#E5E7EB;
    margin-bottom:14px;
    position:relative;
    padding-left:28px;
    line-height:1.6;
}

.feature-card li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:#60A5FA;
    font-weight:bold;
    font-size:18px;
}

/*==========================
        CONTACT
===========================*/

.contact{
    padding:100px 24px;
    background:#F8FAFC;
}

.contact-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:60px;
    align-items:center;
}

.contact-content h2{
    font-size:46px;
    color:#111827;
    margin:20px 0;
}

.contact-content p{
    color:#6B7280;
    line-height:1.8;
    margin-bottom:40px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.info-box{
    background:#fff;
    padding:20px;
    border-left:4px solid #2563EB;
    border-radius:10px;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

.info-box-green {
    border-left:4px solid #03931e;
}

.info-box h4{
    margin-bottom:8px;
    color:#111827;
}

.info-box a{
    color:#2563EB;
    text-decoration:none;
    font-weight:600;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.input-group{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    width:100%;
    padding:15px;
    border:1px solid #D1D5DB;
    border-radius:10px;
    outline:none;
    font-size:15px;
    transition:.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
    border-color:#2563EB;
    box-shadow:0 0 0 3px rgba(37,99,235,.15);
}

.contact-form textarea{
    resize:vertical;
    margin-bottom:25px;
}

.submit-btn{
    width:100%;
    background:#2563EB;
    color:#fff;
    border:none;
    padding:16px;
    border-radius:10px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    margin-top: 20px;
}

.submit-btn:hover{
    background:#1D4ED8;
}

/* ===============================
   PRODUCT DEMO SECTION
================================= */

.product-demo-section{
    padding:10px 0;
    background:#fff;
}

.product-demo-section .container{
    width:min(1200px,90%);
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

/* Left */

.product-demo-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#EEF6FF;
    color:#0F5EF7;
    padding:10px 18px;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    margin-bottom:25px;
}

.product-demo-badge i{
    color:#00CFFF;
}

.product-demo-content h2{
    font-size:52px;
    line-height:1.2;
    color:#111827;
    margin-bottom:20px;
}

.product-demo-content h2 span{
    color:#0F5EF7;
}

.product-demo-content p{
    font-size:18px;
    color:#6B7280;
    line-height:1.8;
    margin-bottom:35px;
}

.product-demo-list{
    display:grid;
    gap:18px;
    margin-bottom:40px;
}

.product-demo-item{
    display:flex;
    align-items:center;
    gap:14px;
}

.product-demo-item i{
    color:#10B981;
    font-size:18px;
}

.product-demo-item span{
    color:#374151;
}

.product-demo-btn{
    display:inline-block;
    background:#0F5EF7;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:12px;
    font-weight:600;
    transition:.3s;
}

.product-demo-btn:hover{
    transform:translateY(-3px);
    box-shadow:
    0 0 20px rgba(15,94,247,.25);
}

/* ==========================
   VIDEO CARD
========================== */

.product-demo-video-card{
    position: relative;
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;

    border-radius: 22px;
    overflow: hidden;

    margin-left: auto;

    background: #081C42;

    box-shadow:
        0 20px 50px rgba(0,0,0,.15),
        0 0 40px rgba(15,94,247,.15);
}

.product-demo-video-card video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius:20px;
}

/* Top Badge */

.video-top-bar{

    position:absolute;

    top:18px;
    left:18px;

    z-index:5;

}

.video-duration{

    display:inline-block;

    background:#00D9FF;

    color:#081C42;

    padding:8px 16px;

    border-radius:40px;

    font-size:13px;

    font-weight:700;

}

/* Bottom Overlay */

.video-overlay-info{

    position:absolute;

    left:0;
    bottom:0;

    width:100%;

    padding:20px;

    background:linear-gradient(to top,rgba(0,0,0,.85),transparent);

}

.video-overlay-info h4{

    color:#fff;

    font-size:24px;

    margin-bottom:5px;

}

.video-overlay-info p{

    color:#ddd;

    font-size:14px;

}

/*==========================
        FOOTER
===========================*/
.error:empty,
.success:empty {
    display: none;
}

.error {
    display: block;
    color: #842029;
    background: #f8d7da;
    border: 1px solid #f5c2c7;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 8px;
}

.success {
    display: block;
    color: #0f5132;
    background: #d1e7dd;
    border: 1px solid #badbcc;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 8px;
}

.footer{
    background:#041436;
    color:#fff;
}

.footer-container{
    max-width:1280px;
    margin:auto;
    padding:70px 24px 50px;
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}

.footer-about img{
    width:180px;
    margin-bottom:25px;
}

.footer-about p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    max-width:380px;
}

.footer-links h3{
    margin-bottom:25px;
    font-size:20px;
}

.footer-links ul{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:15px;
    color:rgba(255,255,255,.75);
}

.footer-links a{
    text-decoration:none;
    color:rgba(255,255,255,.75);
    transition:.3s;
}

.footer-links a:hover{
    color:#60A5FA;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding:25px;
    text-align:center;
    color:rgba(255,255,255,.6);
    font-size:15px;
}

.btn-primary-header {
    background: #fff;
    color: #2563EB;
    text-decoration: none;
    padding: 15px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.header-btns {
    display: flex;
    gap: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color:var(--primary-blue);
}

.section-subtitle {
    color: #6c757d;
    margin-bottom: 40px;
}

.toggle-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.billing-toggle{
    display:flex;
    width:max-content;
    margin: auto;
    background:#e9eef7;
    padding:5px;
    border-radius:50px
}

.billing-toggle input{
    display:none
}

.billing-toggle label{
    padding:12px 30px;
    border-radius:40px;
    font-weight:600;
    color:var(--primary-blue);
    cursor:pointer;
    transition:.3s
}

.billing-toggle label.active{
    background:var(--primary-blue);
    color:#fff;
    box-shadow:0 8px 20px rgba(4,20,54,.2)
}

.pricing-container {
    max-width: 1400px;
    margin: auto;
    padding: 30px 24px;
    text-align: center;
}

/* ===========================
   Pricing Card
=========================== */

.pricing-card{
    background:#fff;
    border-radius:18px;
    padding:40px 35px;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;
    height:100%;
}

.pricing-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(4,20,54,.15);
}

.recommended{
    border:2px solid #041436;
}

/* Badge */

.badge-top{
    position:absolute;
    top:-15px;
    right:25px;
    background:#041436;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

/* Plan Name */

.plan-name{
    font-size:30px;
    font-weight:700;
    color:#041436;
    margin-bottom:25px;
}

/* Price */

.price{
    font-size:48px;
    font-weight:700;
    color:#041436;
    line-height:1;
}

.old-price{
    color:#9ca3af;
    text-decoration:line-through;
    font-size:22px;
    margin-bottom:8px;
}

.billing{
    color:#6b7280;
    margin-top:10px;
    margin-bottom:30px;
}

/* ===========================
   Feature List
=========================== */

.feature-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.feature-list li{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin-bottom:16px;
    font-size:15px;
    color:#374151;
    text-align: left;
}

.feature-list i{
    color:#10b981;
    margin-top:3px;
    font-size:15px;
}

/* ===========================
   Button
=========================== */

.btn-plan{
    background:#041436;
    color:#fff;
    padding:14px;
    border-radius:10px;
    font-weight:600;
    transition:.3s;
}

.btn-plan:hover{
    background:#0b2b67;
    color:#fff;
}

.pricing-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    align-items:stretch;
    flex-wrap:wrap;
}

.pricing-column{
    flex:1;
    min-width:320px;
    max-width:500px;
}

.btn-plan{
    width:100%;
    display:block;
    padding:14px;
    border:none;
    border-radius:10px;
    background:#041436;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-plan:hover{
    background:#0b2b67;
}

/* ===========================
   Helpers
=========================== */

.hidden{
    display:none;
}

/* Responsive */

@media (max-width:992px){

    .hero{
        padding:30px 0;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-content p{
        margin:auto;
        margin-bottom:35px;
    }

    .hero-buttons{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-stats{
        justify-content:center;
        flex-wrap:wrap;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-image img{
        max-width:500px;
    }

    .use-case-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .workflow-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .multi-grid{
        grid-template-columns:1fr;
    }

    .dark h2{
        font-size:36px;
    }

    .contact-container{
        grid-template-columns:1fr;
    }

    .contact-content{
        text-align:center;
    }

    .contact-content h2{
        font-size:36px;
    }

    .footer-container{
        grid-template-columns:repeat(2,1fr);
    }

    .product-demo-section .container{

        grid-template-columns:1fr;
    }

    .product-demo-content{

        text-align:center;

    }

    .product-demo-item{

        justify-content:center;

    }

    .pricing-container{
        margin:40px auto;
    }

    .section-title{
        font-size:34px;
    }

    .price{
        font-size:42px;
    }

    .pricing-card{
        margin-bottom:25px;
    }
}

@media (max-width:576px){

    .hero-content h1{
        font-size:34px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:280px;
        text-align:center;
    }

    .hero-stats{
        gap:30px;
    }

    .hero-stats h3{
        font-size:26px;
    }

    .use-case-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
    }

    .workflow-grid{
        grid-template-columns:1fr;
    }

    .input-group{
        grid-template-columns:1fr;
    }

    .contact-form{
        padding:30px;
    }

    .footer-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-about p{
        max-width:100%;
    }

    .footer-about img{
        margin:auto auto 25px;
    }

    .btn-primary-header {
        width: 100%;
        max-width: 58px;
        text-align: center;
        padding: 10px 8px;
    }

    .section-title{
        font-size:28px;
    }

    .section-subtitle{
        font-size:16px;
    }

    .pricing-card{
        padding:28px 22px;
    }

    .billing-toggle label{
        padding:10px 20px;
        font-size:14px;
    }

    .price{
        font-size:38px;
    }
}

/* ===========================
   HEADER RESPONSIVE
=========================== */

@media (max-width:768px){

    .nav-links{
        display: none;
    }

    .product-demo-content h2{
        font-size:38px;
    }

    .product-demo-content p{
        font-size:16px;
    }

    .product-demo-btn{
        width:100%;
        text-align:center;
    }

    .video-overlay-info h4{
        font-size:20px;
    }

    .pricing-grid{
        flex-direction:column;
    }

    .pricing-column{
        max-width:100%;
    }

}

@media (max-width:480px){

    .logo img{
        width:140px;
    }

    .demo-btn{
        padding:10px;
        font-size:15px;
    }

    /* .product-demo-section{
        padding:70px 0;
    } */

    .product-demo-content h2{
        font-size:30px;
    }

    .product-demo-badge{
        font-size:12px;
    }

}