/* ==========================================
   SMSWEE Landing Page Style
   Sky Blue SaaS Theme
========================================== */


/* ---------- Global ---------- */

:root {

    --primary: #2563eb;
    --primary-dark: #0f4fd8;
    --secondary: #60a5fa;
    --sky: #eaf6ff;
    --light: #f8fbff;
    --dark: #172033;
    --text: #475569;
    --white: #ffffff;
    --success: #10b981;

}


* {

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html {

    scroll-behavior:smooth;

}


body {

    font-family:'Inter', sans-serif;
    color:var(--text);
    background:#ffffff;
    overflow-x:hidden;

}


h1,h2,h3,h4,h5 {

    font-family:'Poppins', sans-serif;
    color:var(--dark);
    font-weight:700;

}


section {

    padding:90px 0;

}


/* ---------- Navbar ---------- */


.navbar {

    padding:18px 0;
    transition:.3s;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(12px);
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}


.navbar-brand {

    font-size:28px;
    font-weight:800;
    color:#0f172a;

}


.navbar-brand span {

    color:var(--primary);

}


.nav-link {

    font-weight:500;
    margin:0 10px;
    color:#334155;

}


.nav-link:hover {

    color:var(--primary);

}


.btn-login {

    background:var(--primary);
    color:#fff!important;
    padding:12px 28px;
    border-radius:30px;
    font-weight:600;

}


.btn-login:hover {

    background:var(--primary-dark);

}



/* ---------- Hero ---------- */


.hero {

    min-height:100vh;
    display:flex;
    align-items:center;
    background:

    linear-gradient(
        135deg,
        #eaf6ff 0%,
        #c7e8ff 45%,
        #60a5fa 100%
    );

    position:relative;
    overflow:hidden;

}


.hero:before {

    content:"";
    position:absolute;
    width:600px;
    height:600px;
    background:rgba(255,255,255,.25);
    border-radius:50%;
    top:-200px;
    right:-150px;

}


.hero-content {

    position:relative;
    z-index:2;

}


.badge-live {

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:white;
    padding:10px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);

}


.live-dot {

    width:10px;
    height:10px;
    background:#10b981;
    border-radius:50%;
    animation:pulse 2s infinite;

}


@keyframes pulse {

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.4);
    }

    100%{
        transform:scale(1);
    }

}



.hero h1 {

    font-size:55px;
    line-height:1.15;
    margin-bottom:25px;

}


.hero p {

    font-size:18px;
    line-height:1.8;
    max-width:600px;
    color:#334155;

}



.hero-buttons {

    margin-top:35px;

}



.btn-primary-custom {

    background:var(--primary);
    color:white;
    padding:14px 32px;
    border-radius:30px;
    font-weight:600;
    border:none;

}


.btn-primary-custom:hover {

    background:#1748c7;
    color:white;

}



.btn-outline-custom {

    margin-left:15px;
    padding:13px 32px;
    border-radius:30px;
    border:2px solid var(--primary);
    color:var(--primary);
    font-weight:600;

}



.btn-outline-custom:hover {

    background:var(--primary);
    color:white;

}



.hero-list {

    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-top:35px;

}


.hero-list div {

    font-size:14px;
    font-weight:500;

}


.hero-list i {

    color:var(--success);

}



.hero-image {

    animation:floating 5s infinite ease-in-out;

}



@keyframes floating {

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}



/* ---------- Section Titles ---------- */


.section-title {

    text-align:center;
    margin-bottom:55px;

}


.section-title h2 {

    font-size:38px;

}


.section-title p {

    color:#64748b;

}



/* ---------- Service Cards ---------- */


.service-card {

    height:100%;
    padding:35px;
    border-radius:20px;
    background:white;
    box-shadow:0 10px 35px rgba(15,23,42,.08);
    transition:.3s;

}


.service-card:hover {

    transform:translateY(-10px);

}


.service-card i {

    font-size:40px;
    color:var(--primary);
    margin-bottom:20px;

}



.service-card h4 {

    margin-bottom:15px;

}



/* ---------- Features ---------- */


#features {

    background:var(--light);

}



.feature-box {

    background:white;
    text-align:center;
    padding:35px 20px;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;

}


.feature-box:hover {

    transform:translateY(-8px);

}


.feature-box i {

    font-size:38px;
    color:var(--primary);

}



/* ---------- API ---------- */


#api {

    background:#f8fafc;

}


.api-box {

    background:#0f172a;
    color:#7dd3fc;
    padding:30px;
    border-radius:20px;
    font-size:16px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);

}



/* ---------- Industries ---------- */


#industries div[class*="col"] {

    padding:25px;
    font-size:18px;
    font-weight:600;
    background:white;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}



/* ---------- Statistics ---------- */


.stats {

    background:

    linear-gradient(
        135deg,
        #2563eb,
        #60a5fa
    );

    color:white;

}



.stats h2 {

    color:white;
    font-size:45px;

}


.stats p {

    color:white;

}



/* ---------- Contact ---------- */


.form-control {

    padding:15px;
    border-radius:12px;

}



#contact h4 {

    color:var(--primary);

}



/* ---------- Footer ---------- */


footer {

    background:#0f172a;
    padding:30px 0;
    color:white;

}



/* ---------- WhatsApp ---------- */


.whatsapp {

    position:fixed;
    bottom:25px;
    right:25px;

    width:60px;
    height:60px;

    background:#25d366;
    color:white;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:30px;

    z-index:999;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

}


/* ---------- Responsive ---------- */


@media(max-width:992px){


.hero h1 {

    font-size:40px;

}


.hero {

    padding-top:120px;

}


.hero-image {

    margin-top:40px;

}


.hero-list {

    gap:10px;

}


}



@media(max-width:576px){


section {

    padding:60px 0;

}


.hero h1 {

    font-size:34px;

}


.btn-outline-custom {

    margin-left:0;
    margin-top:15px;
    display:block;
    width:max-content;

}


}
