/* =========================================================
   WEBSITEDEVELOP.IN
   COMMON CSS
========================================================= */


/* =========================
   ROOT VARIABLES
========================= */

:root{
    --primary:#2563eb;
    --primary-dark:#1d4ed8;
    --dark:#0f172a;
    --dark-2:#1e293b;
    --text:#475569;
    --light:#f8fafc;
    --border:#e2e8f0;
    --white:#ffffff;
}


/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    color:var(--dark);
    background:#fff;
    line-height:1.7;
}

a{
    text-decoration:none;
}


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

.navbar{
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid #eef2f7;
    padding:17px 0;
}

.navbar-brand{
    font-size:25px;
    font-weight:800;
    color:var(--dark)!important;
}

.navbar-brand span{
    color:var(--primary);
}

.navbar-nav .nav-link{
    color:#334155;
    font-size:16px;
    font-weight:500;
    margin:0 8px;
    transition:.3s; padding: 10px 20px;
}

.navbar-nav .nav-link:hover{
    color:var(--primary); background: #f5f7fb; border-radius: 6px;
}

.nav-btn{
    background:var(--primary);
    color:#fff!important;
    padding:11px 21px!important;
    border-radius:8px;
}

.nav-btn:hover{
    background:var(--primary-dark);
}


/* =========================
   COMMON BUTTONS
========================= */

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:var(--primary);
    color:#fff;
    padding:14px 25px;
    border-radius:9px;
    font-weight:700;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:var(--primary-dark);
    color:#fff;
    transform:translateY(-2px);
}

.btn-outline-custom{
    display:inline-flex;
    align-items:center;
    gap:8px;
    border:1px solid var(--border);
    background:#fff;
    color:var(--dark);
    padding:14px 25px;
    border-radius:9px;
    font-weight:700;
    transition:.3s;
}

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


/* =========================
   COMMON SECTION
========================= */

.section{
    padding:100px 0;
}

.section-light{
    background:#f8fafc;
}

.section-header{
    max-width:720px;
    margin:0 auto 55px;
    text-align:center;
}

.section-tag{
    color:var(--primary);
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.section-header h2{
    font-size:40px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:15px;
}

.section-header p{
    color:var(--text);
}


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

.service-card{
    height:100%;
    padding:32px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:17px;
    transition:.35s;
}

.service-card:hover{
    transform:translateY(-8px);
    border-color:#bfdbfe;
    box-shadow:0 20px 45px rgba(15,23,42,.08);
}

.service-icon{
    width:58px;
    height:58px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    background:#eff6ff;
    color:var(--primary);
    font-size:26px;
    margin-bottom:22px;
}

.service-card h4{
    font-size:19px;
    font-weight:700;
    margin-bottom:12px;
}

.service-card p{
    color:var(--text);
    font-size:14px;
    margin:0;
}


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

.stats{
    background:var(--dark);
    color:#fff;
    padding:65px 0;
}

.stat-box{
    border-right:1px solid rgba(255,255,255,.12);
}

.stat-box:last-child{
    border-right:0;
}

.stat-number{
    font-size:42px;
    font-weight:800;
}

.stat-label{
    color:#94a3b8;
    font-size:14px;
}


/* =========================
   PORTFOLIO
========================= */

.project-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--border);
    border-radius:17px;
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 45px rgba(15,23,42,.1);
}

.project-image{
    height:250px;
    position:relative;
    overflow:hidden;
}

.project-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.project-card:hover img{
    transform:scale(1.06);
}

.project-info{
    padding:23px;
}

.project-info h4{
    font-size:18px;
    font-weight:700;
}

.project-info p{
    color:var(--text);
    font-size:14px;
}

.project-tag{
    display:inline-block;
    padding:5px 10px;
    background:#eff6ff;
    color:var(--primary);
    border-radius:5px;
    font-size:11px;
    font-weight:700;
}


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

.process-box{
    position:relative;
    padding:30px;
    text-align:center;
}

.process-number{
    width:55px;
    height:55px;
    margin:0 auto 20px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    font-size:18px;
}

.process-box h4{
    font-size:18px;
    font-weight:700;
}

.process-box p{
    color:var(--text);
    font-size:14px;
}


/* =========================
   PRICING
========================= */

.price-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:35px;
    height:100%;
}

.price-card.featured{
    border:2px solid var(--primary);
    box-shadow:0 20px 50px rgba(37,99,235,.12);
    position:relative;
}

.popular{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:var(--primary);
    color:#fff;
    padding:6px 15px;
    border-radius:30px;
    font-size:11px;
    font-weight:700;
}

.price-card h4{
    font-weight:700;
}

.price{
    font-size:40px;
    font-weight:800;
    margin:15px 0;
}

.price small{
    font-size:13px;
    color:#64748b;
    font-weight:500;
}

.price-list{
    padding:0;
    margin:25px 0;
    list-style:none;
}

.price-list li{
    padding:8px 0;
    color:#475569;
    font-size:14px;
}

.price-list i{
    color:#22c55e;
    margin-right:8px;
}


/* =========================
   TESTIMONIAL
========================= */

.testimonial-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    border:1px solid var(--border);
}

.stars{
    color:#f59e0b;
    margin-bottom:18px;
}

.testimonial-card p{
    color:#475569;
    font-size:15px;
}

.client{
    display:flex;
    align-items:center;
    gap:12px;
    margin-top:20px;
}

.client-avatar{
    width:45px;
    height:45px;
    border-radius:50%;
    background:#dbeafe;
    color:var(--primary);
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
}


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

.cta{
    padding:90px 0;
    background:linear-gradient(135deg,#2563eb,#1e40af);
    color:#fff;
}

.cta h2{
    font-size:42px;
    font-weight:800;
}

.cta p{
    color:#dbeafe;
}


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

.footer{
    background:#0b1120;
    color:#94a3b8;
    padding:70px 0 25px;
}

.footer h4,
.footer h5{
    color:#fff;
}

.footer h4{
    font-size:24px;
    font-weight:800;
}

.footer p{
    font-size:14px;
}

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

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

.footer-links a{
    color:#94a3b8;
    font-size:14px;
    transition:.3s;
}

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

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.08);
    padding-top:20px;
    margin-top:40px;
    font-size:13px;
}


/* =========================
   WHATSAPP
========================= */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    width:58px;
    height:58px;
    background:#25d366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    z-index:999;
    box-shadow:0 8px 25px rgba(37,211,102,.35);
    transition:.3s;
}

.whatsapp:hover{
    transform:scale(1.08);
    color:#fff;
}


/* =========================
   SCROLL TOP
========================= */

.scroll-top{
    position:fixed;
    right:22px;
    bottom:90px;
    width:42px;
    height:42px;
    background:#fff;
    border:1px solid var(--border);
    color:var(--dark);
    border-radius:8px;
    display:none;
    align-items:center;
    justify-content:center;
    z-index:998;
}


/* =========================
   ANIMATION
========================= */

.reveal{
    opacity:0;
    transform:translateY(25px);
    transition:all .7s ease;
}

.reveal.active{
    opacity:1;
    transform:translateY(0);
}

.page-hero {
    padding: 25px 0!important;
	}
	
	.hero {
    padding: 25px 0!important;
	}


/* =========================
   COMMON RESPONSIVE
========================= */

@media(max-width:991px){

    .stat-box{
        border-right:0;
    }

}

@media(max-width:767px){

    .section{
        padding:70px 0;
    }
    .navbar-nav .nav-link{text-align: center; border-bottom: 1px solid #efefef;}

    .section-header h2{
        font-size:32px;
    }

    .stat-box{
        border-bottom:1px solid rgba(255,255,255,.1);
        padding:20px 0;
    }

    .stat-box:last-child{
        border-bottom:0;
    }
	
	 .cta h2{
        font-size:32px;
    }

}