﻿/*==================================================
    RSSPOSWEB
    Website : https://rsspo.in
    Version : 1.0
    Framework : ASP.NET MVC 5 (.NET 4.6.1)
    Author : RealSoft Solutions
==================================================*/


/*==================================================
    01 : Google Fonts
==================================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/*==================================================
    02 : Root Variables
==================================================*/

:root{

    --primary:#0E7490;
    --secondary:#14B8A6;
    --accent:#F59E0B;

    --dark:#0F172A;
    --text:#334155;
    --light:#64748B;

    --white:#FFFFFF;
    --body:#F8FAFC;
    --border:#E2E8F0;

    --success:#10B981;
    --danger:#EF4444;

    --radius:14px;
    --radius-lg:20px;

    --shadow-sm:0 2px 10px rgba(0,0,0,.05);
    --shadow:0 10px 30px rgba(15,23,42,.08);
    --shadow-lg:0 25px 50px rgba(15,23,42,.12);

    --transition:.35s ease;
}


/*==================================================
    03 : Reset
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--body);

    color:var(--text);

    font-size:15px;

    line-height:1.7;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

ul{

    list-style:none;

    margin:0;

    padding:0;

}

button{

    outline:none;

    border:none;

}

input,
textarea,
select{

    outline:none;

}

section{

    padding:40px 0;

    position:relative;

}

.container{

    max-width:1320px;

}

::selection{

    background:var(--primary);

    color:#fff;

}


/*==================================================
    04 : Scrollbar
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#edf2f7;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--secondary);

}


/*==================================================
    05 : Typography
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--dark);

    font-weight:700;

    margin-bottom:18px;

    line-height:1.3;

}

h1{

    font-size:58px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

h4{

    font-size:24px;

}

h5{

    font-size:20px;

}

h6{

    font-size:18px;

}

p{

    margin-bottom:18px;

    color:var(--text);

}

.text-primary{

    color:var(--primary)!important;

}

.text-secondary{

    color:var(--secondary)!important;

}

.text-accent{

    color:var(--accent)!important;

}

.text-light{

    color:var(--light)!important;

}


/*==================================================
    06 : Section Title
==================================================*/

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    display:inline-block;

    background:rgba(20,184,166,.10);

    color:var(--secondary);

    padding:8px 18px;

    border-radius:40px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;

}

.section-title h2{

    margin-bottom:15px;

}

.section-title p{

    max-width:700px;

    margin:auto;

}


/*==================================================
    07 : Utilities
==================================================*/

.bg-white{

    background:#fff;

}

.bg-primary{

    background:var(--primary);

}

.bg-dark{

    background:var(--dark);

}

.rounded-xl{

    border-radius:var(--radius-lg);

}

.shadow-box{

    box-shadow:var(--shadow);

}

.mt-80{

    margin-top:80px;

}

.mb-80{

    margin-bottom:80px;

}

.pt-100{

    padding-top:100px;

}

.pb-100{

    padding-bottom:100px;

}
/*==================================================
    08 : Premium Buttons
==================================================*/

.btn{

    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:600;
    border-radius:50px;
    padding:14px 34px;
    transition:all .35s ease;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    border:none;
    cursor:pointer;
    position:relative;
    overflow:hidden;
    z-index:1;

}

.btn i{

    font-size:15px;

}

.btn-primary{

    background:linear-gradient(135deg,#14B8A6,#0E7490);
    color:#fff!important;
    box-shadow:0 15px 35px rgba(14,116,144,.25);

}

.btn-primary:hover{

    color:#fff;
    transform:translateY(-3px);
    box-shadow:0 20px 40px rgba(14,116,144,.35);

}

.btn-outline{

    background:#fff;
    border:2px solid #14B8A6;
    color:#14B8A6;

}

.btn-outline:hover{

    background:#14B8A6;
    color:#fff;
    transform:translateY(-3px);

}

.btn-dark{

    background:#0F172A;
    color:#fff;

}

.btn-dark:hover{

    background:#000;
    color:#fff;
    transform:translateY(-3px);

}



/*==================================================
    09 : Header
==================================================*/

.header{

    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    transition:.35s;

}

.header.sticky{

    position:fixed;
    background:#fff;
    box-shadow:0 5px 25px rgba(0,0,0,.08);

}



/*==================================================
    10 : Navigation
==================================================*/

.navbar{

    padding:18px 0;
    transition:.35s;

}

.header.sticky .navbar{

    padding:10px 0;

}

.navbar-brand{

    font-size:34px;
    font-weight:800;
    color:#0E7490!important;
    letter-spacing:.5px;

}

.navbar-brand span{

    color:#F59E0B;

}

.navbar-nav{

    margin-left:auto;

}

.nav-item{

    margin-left:10px;

}

.nav-link{

    color:#0F172A!important;
    font-size:15px;
    font-weight:600;
    padding:12px 18px!important;
    border-radius:50px;
    transition:.35s;

}

.nav-link:hover{

    color:#14B8A6!important;
    background:rgba(20,184,166,.08);

}

.nav-item.active .nav-link{

    color:#14B8A6!important;

}

.demo-btn{

    margin-left:20px;

}



/*==================================================
    11 : Hero
==================================================*/

.hero{

    position:relative;
    min-height:100vh;
    padding:140px 0 90px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:linear-gradient(135deg,#F8FAFC 0%,#E8FDFC 100%);

}

.hero::before{

    content:'';
    position:absolute;
    z-index:0;
    width:650px;
    height:650px;
    background:#14B8A6;
    opacity:.08;
    border-radius:50%;
    top:-250px;
    right:-150px;

}

.hero::after{

    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#0E7490;
    opacity:.05;
    border-radius:50%;
    bottom:-180px;
    left:-120px;
    z-index:0;
}
.hero-content{
    position:relative;
    z-index:20;
    max-width:100%;
    width:100%;
}
.hero-tag{

    display:inline-block;
    padding:8px 20px;
    background:rgba(20,184,166,.10);
    color:#14B8A6;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;

}

.hero h1{
    font-size:58px;
    font-weight:800;
    color:#0F172A;
    line-height:1.15;
    letter-spacing:-1px;
    margin-bottom:30px;
      max-width:100%;
}

.hero h1 span{
    display:block;
    color:#14B8A6;
}
.hero p{
    font-size:22px;
    line-height:1.75;
    max-width:620px;
    color:#475569;
    margin-bottom:32px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    align-items:center;
    flex-wrap:wrap;
    margin-top:15px;
}



/*==================================================
    12 : Hero Image
==================================================*/

.hero-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:650px;
    overflow:visible;
}

.hero-image img{
    width:100%;
    max-width:700px;
    position:relative;
    z-index:2;
}

.float-card{
    position:absolute;
    z-index:10;
}

.card-sales{
    top:30px;
    right:-20px;
}

.card-users{
    bottom:60px;
    left:-20px;
}

.card-live{
    top:50%;
    right:-30px;
    transform:translateY(-50%);
}
.trust-strip{

    background:#ffffff;

    padding:20px 0;

    border-top:1px solid #eee;

    border-bottom:1px solid #eee;

}

.trust-strip i{

    font-size:28px;

    color:#14B8A6;

    display:block;

    margin-bottom:10px;

}

.trust-strip span{

    font-weight:600;

}

/*==================================================
    13 : Floating Cards
==================================================*/
.float-card{
    position:absolute;
    background:#fff;
    border-radius:14px;
    padding:12px 18px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    font-size:13px;
    font-weight:600;
    color:#0F172A;
    z-index:15;
    white-space:nowrap;
}

.card-sales{
    top:20px;
    right:20px;
}

.card-users{
    bottom:20px;
    left:20px;
}

.card-live{
    top:50%;
    right:20px;
    transform:translateY(-50%);
}


/*==================================================
    14 : Animation
==================================================*/

@keyframes FloatImage{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-15px);

    }

    100%{

        transform:translateY(0px);

    }

}
@keyframes HeroFade{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}
/*==========================================
        FEATURES
==========================================*/

.feature-box{

    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    border:1px solid #edf2f7;
    height:100%;
    box-shadow:0 10px 35px rgba(0,0,0,.05);

}

.feature-box:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 50px rgba(20,184,166,.18);

}

.feature-icon{

    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:linear-gradient(135deg,#14B8A6,#0E7490);

    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:34px;

}

.feature-box h4{

    margin-bottom:15px;

}

.feature-box p{

    margin-bottom:0;

}
/*==========================================
        INDUSTRIES
==========================================*/

.industry-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

    border:1px solid #edf2f7;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(20,184,166,.18);

}

.industry-card img{

    width:130px;

    margin:auto;

    margin-bottom:25px;

}

.industry-card h4{

    margin-bottom:15px;

}

.industry-card p{

    margin-bottom:0;

}
/*==========================================
        SCREENSHOTS
==========================================*/

.screen-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.screen-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(20,184,166,.18);

}

.screen-card img{

    width:100%;

    transition:.35s;

}

.screen-card:hover img{

    transform:scale(1.03);

}

.screen-card h5{

    padding:22px;

    text-align:center;

    margin:0;

}
/*==========================================
        WHY RSS POS
==========================================*/

#why{

    padding:90px 0;

}

.section-subtitle{

    color:#14B8A6;

    font-weight:600;

    letter-spacing:2px;

    text-transform:uppercase;

}

.why-item{

    margin-top:20px;

    font-size:18px;

    font-weight:500;

}

.why-item i{

    color:#14B8A6;

    margin-right:10px;

}
/*==========================================
      MOBILE DASHBOARD
==========================================*/

#mobile-dashboard{

    padding:90px 0;

}

.feature-list{

    list-style:none;

    padding:0;

    margin-top:30px;

}

.feature-list li{

    font-size:17px;

    margin-bottom:15px;

}

.feature-list i{

    color:#14B8A6;

    margin-right:10px;

}
/*==========================================
            PRICING
==========================================*/

#pricing{

    padding:90px 0;

}

.pricing-card{

    background:#fff;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

    overflow:hidden;

    transition:.35s;

}

.pricing-card:hover{

    transform:translateY(-8px);

}

.pricing-header{

    background:linear-gradient(135deg,#14B8A6,#0E7490);

    color:#fff;

    text-align:center;

    padding:45px;

}

.pricing-header h1{

    font-size:48px;

    font-weight:700;

}

.pricing-card ul{

    list-style:none;

    padding:35px;

}

.pricing-card li{

    margin-bottom:18px;

}

.pricing-card i{

    color:#14B8A6;

    margin-right:10px;

}

.pricing-card .btn{

    margin:30px;

}
/*==========================================
        TESTIMONIALS
==========================================*/

#testimonials{

    padding:90px 0;

}

.testimonial-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    height:100%;

    transition:.35s;

    border:1px solid #edf2f7;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 50px rgba(20,184,166,.18);

}

.testimonial-card p{

    font-style:italic;

    margin-bottom:25px;

}

.testimonial-card h5{

    margin-bottom:5px;

}
/*==========================================
            CONTACT
==========================================*/

#contact{

    padding:90px 0;

}

.contact-info{

    background:linear-gradient(135deg,#14B8A6,#0E7490);

    color:#fff;

    padding:40px;

    border-radius:20px;

    height:100%;

}

.contact-info p{

    margin-top:20px;

}

.contact-info i{

    width:28px;

}
/*==========================================
                FOOTER
==========================================*/

.footer{

    background:#0f172a;

    color:#fff;

    padding:80px 0 25px;

}

.footer-logo{

    height:60px;

}

.footer h5{

    margin-bottom:25px;

    color:#fff;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cbd5e1;

    text-decoration:none;

}

.footer-links a:hover{

    color:#14B8A6;

}

.footer hr{

    border-color:rgba(255,255,255,.12);

}
/*==========================================
        FLOATING WHATSAPP
==========================================*/

.whatsapp-btn{

    position:fixed;

    right:25px;

    bottom:25px;

    width:65px;

    height:65px;

    border-radius:50%;

    background:#25D366;

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:34px;

    box-shadow:0 15px 35px rgba(37,211,102,.35);

    z-index:9999;

    transition:.35s;

}

.whatsapp-btn:hover{

    color:#fff;

    transform:scale(1.1);

    text-decoration:none;

}

.whatsapp-btn i{

    animation:WhatsappPulse 2s infinite;

}

@keyframes WhatsappPulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.15);

    }

    100%{

        transform:scale(1);

    }

}
.nav-link.active{

    color:#14B8A6 !important;

    background:rgba(20,184,166,.10);

}
.hero-badges{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.hero-badges span{
    background:#ffffff;
    padding:10px 18px;
    border-radius:30px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    font-size:14px;
    font-weight:600;
}

.hero-badges i{
    color:#14B8A6;
    margin-right:8px;
}
.dashboard-placeholder{
    background:#ffffff;
    border-radius:20px;
    min-height:420px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    box-shadow:0 25px 60px rgba(0,0,0,.15);
    border:1px solid #e8e8e8;
}

.dashboard-placeholder i{
    font-size:90px;
    color:#14b8a6;
    margin-bottom:20px;
}

.dashboard-placeholder h3{
    font-weight:700;
    margin-bottom:10px;
}

.dashboard-placeholder p{
    color:#777;
}
.client-card{
    background:#ffffff;
    border-radius:16px;
    padding:30px 20px;
    text-align:center;
    transition:.3s;
    border:1px solid #e9ecef;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    height:100%;
}

.client-card i{
    color:#16a34a;
}

.client-card h6{
    margin:0;
    font-weight:700;
    color:#1f2937;
}

.client-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}
.hero .row{
    display:flex !important;
    flex-direction:row !important;
}

.hero .hero-content{
    display:block !important;
    visibility:visible !important;
    opacity:1 !important;
}

.hero .hero-image{
    display:flex !important;
}


.hero-stats{
    display:flex;
    gap:30px;
    margin-top:40px;
    flex-wrap:wrap;
}

.stat-box{
    flex:1;
    min-width:140px;
}

.stat-box h3{
    font-size:32px;
    font-weight:800;
    color:#14B8A6;
    margin-bottom:8px;
}

.stat-box p{
    margin:0;
    font-size:15px;
    color:#64748B;
}
.hero .row{
    display:flex;
    align-items:center;
}

.hero-content{
    flex:0 0 50%;
    max-width:50%;
}

.hero-image{
    flex:0 0 50%;
    max-width:50%;
}
/* ===== Features → Industries Gap Fix ===== */

#features{
    padding-bottom:15px !important;
}

#features .section-title{
    margin-bottom:35px !important;
}

#features .row{
    margin-bottom:0 !important;
}

#industries{
    padding-top:15px !important;
}

#industries .section-title{
    margin-bottom:40px !important;
}