/* ===========================================
   RIGORWORKS DESIGN SYSTEM
===========================================*/

:root{

--primary:#2563EB;
--primary-dark:#1E40AF;

--secondary:#06B6D4;

--dark:#0F172A;

--text:#334155;

--light:#F8FAFC;

--white:#FFFFFF;

--border:#E2E8F0;

--shadow:0 20px 60px rgba(15,23,42,.08);

--radius:18px;

}

*{

margin:0;
padding:0;
box-sizing:border-box;

}

html{

scroll-behavior:smooth;

}

body{

font-family:'Inter',sans-serif;

background:var(--light);

color:var(--text);

overflow-x:hidden;

line-height:1.7;

}

section{

padding:100px 0;

}

.container{
    max-width:1250px;
    margin:auto;
    padding:0 15px;
}

h1,h2,h3,h4,h5{

font-weight:800;

color:var(--dark);

}

.btn-primary{

background:var(--primary);

border:none;

padding:16px 36px;

border-radius:14px;

font-weight:600;

transition:.3s;

box-shadow:var(--shadow);

}

.btn-primary:hover{

transform:translateY(-3px);

background:var(--primary-dark);

}

.btn-outline-primary{

border:2px solid var(--primary);

padding:16px 36px;

border-radius:14px;

font-weight:600;

}

img{

max-width:100%;

}
.hero{

padding-top:180px;

padding-bottom:140px;

background:linear-gradient(
180deg,
#ffffff,
#eef6ff
);

}

.hero h1{

font-size:72px;

line-height:1.1;

margin-bottom:30px;

}

.hero p{

font-size:22px;

color:#64748B;

max-width:600px;

margin-bottom:40px;

}

.badge{

padding:12px 18px;

font-size:14px;

border-radius:50px;

}
/* Why Choose Us */

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
    height:100%;
}

.feature-card:hover{
    transform:translateY(-8px);
}

.icon-circle{
    width:70px;
    height:70px;
    background:#2563EB;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    margin:0 auto 20px;
}
.service-card{
background:#fff;
padding:35px;
border-radius:18px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s;
height:100%;
border:1px solid #e5e7eb;
}

.service-card:hover{
transform:translateY(-8px);
box-shadow:0 20px 50px rgba(37,99,235,.15);
}

.service-card h4{
font-size:24px;
margin-bottom:18px;
color:#0F172A;
}

.service-card p{
color:#64748B;
line-height:1.7;
margin:0;
}
/* Technologies */

.tech-grid{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:18px;
margin-top:40px;
}

.tech-item{
background:#ffffff;
padding:15px 28px;
border-radius:50px;
font-weight:600;
border:1px solid #dbeafe;
box-shadow:0 8px 20px rgba(0,0,0,.06);
transition:.3s;
}

.tech-item:hover{
background:#2563EB;
color:#fff;
transform:translateY(-5px);
}

#technologies{
    background:#f8fafc;
}

#technologies .text-center{
    margin-bottom:60px;
}

#contact input,
#contact select,
#contact textarea{

width:100%;
padding:15px;
margin-bottom:18px;

border:1px solid #dbe4ef;

border-radius:12px;

outline:none;

font-size:16px;

}

#contact textarea{

resize:none;

}

#contact button{

width:100%;

}

.section-title{

text-align:center;

margin-bottom:60px;

}

.section-title h2{

font-size:48px;

margin-bottom:15px;

}

.section-title p{

font-size:20px;

color:#64748B;

}

/* ================= STATS ================= */

.stats-section{

background:#0F172A;

color:#fff;

padding:70px 0;

}

.stats-section h2{

font-size:48px;

font-weight:800;

color:#fff;

margin-bottom:10px;

}

.stats-section p{

font-size:18px;

color:#CBD5E1;

margin:0;

}

/* Footer */

.footer{
background:#0F172A;
color:#fff;
padding:70px 0 20px;
}

.footer h3,
.footer h5{
color:#fff;
margin-bottom:20px;
}

.footer p{
color:#CBD5E1;
}

.footer-links{
list-style:none;
padding:0;
}

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

.footer-links a{
color:#CBD5E1;
text-decoration:none;
}

.footer-links a:hover{
color:#fff;
}

.footer hr{
border-color:#334155;
margin:40px 0 20px;
}

/* ===========================================
   NAVBAR V2
=========================================== */

.navbar{
    padding:18px 0;
    transition:0.3s;
}

.navbar-brand{
    font-size:32px;
    font-weight:800;
    letter-spacing:.5px;
}

.navbar-nav .nav-link{
    font-weight:600;
    color:#334155;
    margin-left:18px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:var(--primary);
}

/* ===========================================
   HERO V2
=========================================== */

.hero{

    padding:170px 0 120px;

    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #eef6ff 100%
    );

}

.hero-badge{

    display:inline-block;

    background:#dbeafe;

    color:#2563EB;

    padding:10px 18px;

    border-radius:999px;

    font-weight:700;

    font-size:14px;

}

.hero h1{

    font-size:64px;

    line-height:1.1;

    color:#0F172A;

}

.hero .lead{

    font-size:22px;

    color:#64748B;

    max-width:620px;

}

.hero img{

    border-radius:24px;

    box-shadow:0 25px 70px rgba(15,23,42,.15);

}

.hero .btn{

    padding:16px 34px;

    border-radius:14px;

    font-weight:700;

}

.hero h3{

    font-size:40px;

    margin-bottom:5px;

}

/* ===========================================
   RESPONSIVE HERO
=========================================== */

@media(max-width:991px){

.hero{

text-align:center;

padding:140px 0 80px;

}

.hero h1{

font-size:48px;

}

.hero .lead{

font-size:18px;

margin:auto;

}

.hero img{

margin-top:50px;

}

}

@media(max-width:576px){

.hero h1{

font-size:38px;

}

.hero .btn{

width:100%;

}

}

/* ===========================================
   STATS V2
=========================================== */

.stats-section{

background:#0F172A;

padding:90px 0;

}

.stat-card{

background:rgba(255,255,255,.05);

padding:35px 25px;

border-radius:20px;

transition:.35s;

height:100%;

border:1px solid rgba(255,255,255,.08);

}

.stat-card:hover{

transform:translateY(-8px);

background:rgba(255,255,255,.09);

}

.stat-card h2{

font-size:54px;

font-weight:800;

color:#3B82F6;

margin-bottom:10px;

}

.stat-card h5{

color:#fff;

margin-bottom:12px;

font-weight:700;

}

.stat-card p{

color:#CBD5E1;

margin:0;

line-height:1.7;

}

/* ===========================================
   SERVICES V2
=========================================== */

#services{
    background:#ffffff;
}

.service-card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    border:1px solid #E5E7EB;
    box-shadow:0 12px 35px rgba(15,23,42,.06);
    transition:.35s;
    height:100%;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 55px rgba(37,99,235,.15);
}

.service-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#DBEAFE;
    color:#2563EB;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    margin-bottom:25px;
}

.service-card h4{
    margin-bottom:18px;
    font-weight:700;
}

.service-card p{
    color:#64748B;
    line-height:1.8;
    margin-bottom:25px;
}

.service-card a{
    text-decoration:none;
    font-weight:700;
    color:#2563EB;
}

.service-card a:hover{
    color:#1E40AF;
}

/* ===========================================
   PROCESS
=========================================== */

#process{

background:#ffffff;

padding:100px 0;

}

.process-card{

background:#F8FAFC;

padding:35px;

border-radius:20px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid #E2E8F0;

}

.process-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.process-number{

width:70px;

height:70px;

margin:0 auto 25px;

border-radius:50%;

background:#2563EB;

color:#fff;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

font-weight:800;

}

.process-card h4{

margin-bottom:18px;

font-weight:700;

}

.process-card p{

color:#64748B;

margin:0;

line-height:1.8;

}

/* ===========================================
   CTA SECTION
=========================================== */

#cta{

padding:100px 0;

background:#F8FAFC;

}

.cta-box{

background:linear-gradient(135deg,#2563EB,#1E40AF);

border-radius:28px;

padding:80px 60px;

text-align:center;

color:#fff;

box-shadow:0 25px 60px rgba(37,99,235,.25);

}

.cta-box h2{

font-size:48px;

font-weight:800;

color:#fff;

margin-bottom:20px;

}

.cta-box p{

max-width:760px;

margin:auto;

font-size:20px;

color:#E2E8F0;

line-height:1.8;

margin-bottom:40px;

}

.cta-box .btn{

padding:16px 34px;

font-weight:700;

border-radius:14px;

}

@media(max-width:768px){

.cta-box{

padding:50px 30px;

}

.cta-box h2{

font-size:34px;

}

.cta-box p{

font-size:18px;

}

}

/* ===========================================
   CONTACT V2
=========================================== */

#contact{

padding:100px 0;

background:#ffffff;

}

.contact-info{

background:#0F172A;

color:#fff;

padding:45px;

border-radius:22px;

height:100%;

}

.contact-info h3{

color:#fff;

margin-bottom:20px;

}

.contact-info p{

color:#CBD5E1;

margin-bottom:30px;

line-height:1.8;

}

.contact-item{

margin-bottom:25px;

padding-bottom:20px;

border-bottom:1px solid rgba(255,255,255,.1);

}

.contact-form{

background:#F8FAFC;

padding:40px;

border-radius:22px;

box-shadow:0 15px 40px rgba(15,23,42,.08);

}

.contact-form .form-control,
.contact-form .form-select{

padding:15px;

border-radius:12px;

border:1px solid #D6DFEA;

}

.contact-form .btn{

padding:16px;

font-weight:700;

border-radius:12px;

}

/* ===========================================
   FOOTER V2
=========================================== */

.footer{

background:#0F172A;

padding:80px 0 30px;

color:#CBD5E1;

}
.footer-logo{
    width:170px;
    height:auto;
    margin-bottom:20px;
}

.footer h3,
.footer h5{

color:#fff;

margin-bottom:20px;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:12px;

}

.footer-links a{

color:#CBD5E1;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#fff;

padding-left:5px;

}

.footer hr{

margin:40px 0 25px;

border-color:#334155;

}

/* ===== GLOBAL POLISH ===== */

html{
    scroll-behavior:smooth;
}

body{
    line-height:1.7;
    text-rendering:optimizeLegibility;
}

/* Cards */

.service-card,
.feature-card,
.process-card,
.stat-card,
.contact-form,
.contact-info{
    transition:all .35s ease;
}

.service-card:hover,
.feature-card:hover,
.process-card:hover,
.stat-card:hover,
.contact-form:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

/* Buttons */

.btn{
    transition:all .3s ease;
}

.btn:hover{
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

/* Hero Image */

.hero img{
    transition:.5s;
}

.hero img:hover{
    transform:scale(1.03);
}

/* Technology */

.tech-item{
    transition:.3s;
}

.tech-item:hover{
    transform:translateY(-6px) scale(1.05);
}

/* Navigation */

.nav-link{
    position:relative;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0;
    height:2px;
    background:#2563eb;
    transition:.3s;
}

.nav-link:hover::after{
    width:100%;
}

/* Images */

img{
    max-width:100%;
    height:auto;
}

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero .btn{
    width:100%;
    margin-bottom:15px;
}

.hero h1{
    font-size:48px;
}

.section-title h2{
    font-size:38px;
}

.cta-box h2{
    font-size:34px;
}

}

@media(max-width:768px){

.hero{
    padding-top:120px;
}

.hero h1{
    font-size:36px;
}

.section-title h2{
    font-size:30px;
}

.display-3{
    font-size:2.5rem;
}

.contact-info{
    margin-bottom:30px;
}

.footer{
    text-align:center;
}

.navbar-brand img{
    width:180px;
    height:auto;
}

.btn-lg{
    width:100%;
}

}

/* iOS / Mobile Navbar & CTA Fixes */
.navbar{position:fixed;top:0;left:0;right:0;z-index:1030;background:#fff;box-shadow:0 4px 18px rgba(0,0,0,.08);min-height:88px;}
.navbar-brand img{max-height:42px;width:auto;}
.hero{padding-top:170px !important;}
#cta{scroll-margin-top:110px;}
@media (max-width:768px){
.navbar{min-height:82px;padding:12px 0;}
.navbar-brand img{max-height:34px;}
.hero{padding-top:135px !important;}
.cta-box{margin-top:20px;padding:45px 24px;}
.cta-box h2{font-size:2.2rem;line-height:1.2;}
.cta-box .btn{width:100%;margin-bottom:16px;}
.navbar-collapse{background:#fff;border-radius:16px;margin-top:12px;padding:18px;box-shadow:0 12px 35px rgba(0,0,0,.12);}
}
@supports (padding: env(safe-area-inset-top)){
.navbar{padding-top:env(safe-area-inset-top);}
}

html {

    scroll-behavior: smooth;

}

.form-status{margin-top:12px;font-weight:500;}
.form-status-success{color:#198754;}
.form-status-error{color:#dc3545;}

.back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    border:none;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 24px rgba(37,99,235,.35);
    cursor:pointer;
    z-index:999;
    opacity:0;
    visibility:hidden;
    transform:translateY(12px);
    transition:opacity .25s ease, transform .25s ease, visibility .25s ease, background .2s ease;
}
.back-to-top svg{width:20px;height:20px;}
.back-to-top:hover{background:var(--primary-dark);}
.back-to-top.is-visible{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
@media (max-width:768px){
.back-to-top{right:16px;bottom:16px;width:44px;height:44px;}
}