/* ==========================================================
   Nobles Soft & Printing
   Professional Green Theme
========================================================== */

:root{

    --primary:#198754;
    --primary-dark:#146c43;
    --primary-light:#d1f7df;

    --secondary:#0d6efd;

    --dark:#1f2937;

    --text:#6c757d;

    --light:#f8f9fa;

    --white:#ffffff;

    --border:#e9ecef;

    --shadow:0 15px 35px rgba(0,0,0,.08);

    --radius:18px;

    --transition:.35s ease;

}

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

html{
    scroll-behavior:smooth;
}

body{

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

    color:var(--dark);

    background:var(--white);

    overflow-x:hidden;

    line-height:1.7;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f5f5f5;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}

/* Selection */

::selection{

    background:var(--primary);

    color:#fff;

}

/* Links */

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

}
/* ==========================
   TOP BAR
========================== */

.top-bar{

    background:#198754;

    color:#fff;

    padding:8px 0;

    font-size:14px;

}

.top-contact{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.top-contact span{

    display:flex;

    align-items:center;

    gap:6px;

    color:#fff;

}

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

.navbar{

    padding:12px 0;

}

.navbar-brand img{

    transition:.3s;

}

.nav-link{

    font-weight:600;

    margin:0 10px;

}

.nav-link:hover{

    color:#198754 !important;

}

.btn-primary{

    background:#198754;

    border:none;

}

.btn-primary:hover{

    background:#146c43;

}

/* ==========================
   MOBILE
========================== */

@media(max-width:991px){

.top-contact{

    font-size:12px;

}

.navbar-brand img{

    height:45px !important;

}

.nav-link{

    text-align:center;

    margin:8px 0;

}

.btn{

    width:100%;

    margin-top:10px;

}

}

/* ==========================
        Buttons
========================== */

.btn{

    border-radius:50px;

    padding:12px 30px;

    font-weight:600;

    transition:var(--transition);

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 15px 30px rgba(25,135,84,.25);

}

.btn-outline-primary{

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

    color:var(--primary);

}

.btn-outline-primary:hover{

    background:var(--primary);

    color:#fff;

    transform:translateY(-3px);

}

/* Section */

section{

    padding:90px 0;

}

.container{

    position:relative;

}

/* Titles */

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:var(--dark);

}

.section-title p{

    color:var(--text);

    max-width:700px;

    margin:auto;

    margin-top:15px;

}

/* ==========================================================
   HERO SECTION
========================================================== */

.hero{
    position:relative;
    overflow:hidden;
    background:linear-gradient(135deg,#eefcf3 0%,#ffffff 100%);
    padding:120px 0;
}

.hero::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(25,135,84,.08);
    border-radius:50%;
    top:-220px;
    right:-180px;
}

.hero::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(25,135,84,.05);
    border-radius:50%;
    bottom:-180px;
    left:-120px;
}

.hero .container{
    position:relative;
    z-index:2;
}

.hero-subtitle{

    display:inline-block;

    padding:10px 22px;

    background:#dff8e9;

    color:var(--primary);

    font-weight:600;

    border-radius:40px;

    font-size:15px;

}

.hero-title{

    font-size:58px;

    font-weight:800;

    line-height:1.15;

    margin-top:25px;

    color:var(--dark);

}

.hero-title span{

    color:var(--primary);

}

.hero-text{

    margin-top:30px;

    color:var(--text);

    font-size:18px;

    max-width:620px;

}

.hero img{

    animation:heroFloat 5s ease-in-out infinite;

}

@keyframes heroFloat{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-18px);
}

100%{
transform:translateY(0);
}

}

/* Hero Buttons */

.hero .btn{

    margin-top:15px;

}

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

.hero .row .col-4 h2{

    font-size:38px;

    color:var(--primary);

    font-weight:700;

}

.hero .row .col-4 small{

    color:#666;

}

/* ==========================================================
   CARDS
========================================================== */

.card{

    border:none;

    border-radius:18px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.10);

}

.card-body{

    padding:35px;

}

.card h4{

    font-weight:700;

    margin-bottom:15px;

}

.card h5{

    font-weight:700;

}

.card p{

    color:var(--text);

}

/* ==========================================================
   SERVICE ICON
========================================================== */

.service-icon{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#ecfbf2;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.service-icon i{

    color:var(--primary);

}

.card:hover .service-icon{

    background:var(--primary);

}

.card:hover .service-icon i{

    color:#fff;

}

/* ==========================================================
   ABOUT SECTION
========================================================== */

#about img{

    border-radius:20px;

    transition:.4s;

}

#about img:hover{

    transform:scale(1.03);

}

#about h2{

    font-size:42px;

    font-weight:700;

}

#about p{

    color:var(--text);

}

#about .fa-circle-check{

    color:var(--primary);

}

/* ==========================================================
   FEATURE BOXES
========================================================== */

.feature-box{

    background:#fff;

    border-radius:16px;

    padding:30px;

    text-align:center;

    transition:.35s;

    box-shadow:0 8px 20px rgba(0,0,0,.05);

}

.feature-box:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 35px rgba(0,0,0,.08);

}

.feature-box i{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.feature-box h5{

    font-weight:700;

    margin-bottom:12px;

}

.feature-box p{

    color:var(--text);

}

/* ==========================================================
   ERP FEATURES
========================================================== */

#features{

    background:#ffffff;

}

#features .card{

    text-align:center;

}

#features .card i{

    color:var(--primary);

    margin-bottom:20px;

    transition:.35s;

}

#features .card:hover i{

    transform:scale(1.15);

}

#features .card-body{

    padding:40px 30px;

}

/* ==========================================================
   SECTION SPACING
========================================================== */

.py-5{

    padding-top:100px!important;

    padding-bottom:100px!important;

}

/* ==========================================================
   IMAGE EFFECT
========================================================== */

img{

    transition:.35s;

}

img:hover{

    transform:scale(1.02);

}

/* ==========================================================
   WHY CHOOSE NOBLES
========================================================== */

.bg-light{
    background:#f8fbf8 !important;
}

#why .card,
#printing .card,
#pricing .card,
#testimonials .card{
    border:none;
    border-radius:20px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
}

#why .card:hover,
#printing .card:hover,
#pricing .card:hover,
#testimonials .card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(25,135,84,.15);
}

#why i{
    color:var(--primary);
}

/* ==========================================================
   PRINTING SECTION
========================================================== */

#printing{
    background:#ffffff;
}

#printing .card-img-top{
    height:220px;
    object-fit:cover;
}

#printing h5{
    font-weight:700;
}

#printing .list-group-item{
    border:none;
    background:transparent;
    padding:14px 0;
    color:#555;
}

#printing .fa-circle-check{
    color:var(--primary);
}

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

#pricing{
    background:#f7fbf8;
}

#pricing .card{
    position:relative;
    transition:.35s;
}

#pricing .card:hover{
    transform:translateY(-12px);
}

#pricing .card-header{
    font-weight:600;
    letter-spacing:.5px;
}

#pricing .display-4,
#pricing .display-5{
    color:var(--primary);
}

#pricing hr{
    opacity:.15;
}

#pricing p{
    margin-bottom:12px;
}

#pricing .btn{
    margin-top:20px;
}

#pricing .border-primary{
    border:2px solid var(--primary)!important;
}

/* ==========================================================
   TESTIMONIALS
========================================================== */

#testimonials{
    background:#ffffff;
}

#testimonials .card{
    height:100%;
}

#testimonials .text-warning{
    font-size:22px;
    letter-spacing:3px;
}

#testimonials p{
    font-style:italic;
}

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

.cta-section{
    background:linear-gradient(135deg,#198754,#146c43);
    color:#fff;
}

.cta-section h2{
    font-weight:700;
}

.cta-section .btn-light{
    border-radius:50px;
    padding:14px 34px;
    font-weight:600;
}

.cta-section .btn-light:hover{
    transform:translateY(-4px);
}

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

.footer{
    background:#0b2f1f;
    color:#d8e8df;
    padding:80px 0 25px;
}

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

.footer p{
    color:#cfd8d3;
}

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

.footer ul li{
    margin-bottom:12px;
}

.footer ul li a{
    color:#cfd8d3;
    transition:.3s;
}

.footer ul li a:hover{
    color:#fff;
    padding-left:8px;
}

.footer hr{
    opacity:.15;
}

.footer .social-icon{
    background:rgba(255,255,255,.12);
}

.footer .social-icon:hover{
    background:#fff;
    color:var(--primary);
}

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

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#25D366;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 12px 30px rgba(0,0,0,.20);
    transition:.35s;
}

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

/* ==========================================================
   BACK TO TOP
========================================================== */

#topBtn{
    position:fixed;
    right:25px;
    bottom:100px;
    width:52px;
    height:52px;
    border-radius:50%;
    display:none;
    z-index:999;
    border:none;
    background:var(--primary);
    color:#fff;
    box-shadow:0 12px 25px rgba(25,135,84,.25);
}

#topBtn:hover{
    background:var(--primary-dark);
}

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

@media(max-width:991px){

.hero{
    text-align:center;
    padding:90px 0;
}

.hero-title{
    font-size:42px;
}

.hero img{
    margin-top:40px;
}

.navbar-nav{
    padding-top:15px;
}

.nav-item{
    margin:5px 0;
}

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

}

@media(max-width:768px){

.hero-title{
    font-size:34px;
}

.hero-text{
    font-size:16px;
}

.py-5{
    padding-top:70px!important;
    padding-bottom:70px!important;
}

.card-body{
    padding:25px;
}

.footer{
    text-align:center;
}

.footer .social-icon{
    margin:5px;
}

#topBtn{
    right:15px;
    bottom:85px;
}

.whatsapp{
    right:15px;
    bottom:15px;
}

}

@media(max-width:576px){

.hero{
    padding:70px 0;
}

.hero-subtitle{
    font-size:14px;
}

.hero-title{
    font-size:30px;
}

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

.navbar-brand img{
    height:45px;
}

.service-icon{
    width:75px;
    height:75px;
}

}