/* =====================================================
   JARVIS DESIGNS
   Production Management System
   Version 1.0
   style.css
====================================================== */


/* =====================================================
   GOOGLE FONT
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


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

:root{

    --primary:#0B5ED7;
    --primary-dark:#084298;

    --secondary:#1F2937;

    --light:#F8F9FA;

    --white:#FFFFFF;

    --gray:#6B7280;

    --border:#E5E7EB;

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

    --radius:12px;

}


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

*{

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

}


html{

    scroll-behavior:smooth;

}


body{

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

    background:var(--white);

    color:var(--secondary);

    line-height:1.7;

}


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

section{

    padding:80px 0;

}


.container{

    max-width:1200px;

}


img{

    width:100%;

    display:block;

}


a{

    text-decoration:none;

}


h1,
h2,
h3,
h4,
h5{

    font-weight:700;

}


p{

    color:var(--gray);

}


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

.btn{

    border-radius:8px;

    padding:12px 28px;

    transition:.30s;

    font-weight:600;

}


.btn-primary{

    background:var(--primary);

    border:none;

}


.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-2px);

}


.btn-outline-primary{

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

}


.btn-outline-primary:hover{

    background:var(--primary);

}


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

.navbar{

    padding:16px 0;

    background:#fff !important;

}


.navbar-brand{

    font-size:22px;

}


.navbar-brand img{

    width:55px;

    height:55px;

    object-fit:contain;

}


.nav-link{

    font-weight:600;

    margin-left:18px;

    color:#333;

}


.nav-link:hover{

    color:var(--primary);

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

.hero{

    background:#F8FAFC;

    min-height:700px;

    display:flex;

    align-items:center;

}

.hero h1{

    font-size:3.3rem;

    font-weight:700;

    line-height:1.2;

    margin-bottom:20px;

    color:var(--secondary);

}

.hero p{

    font-size:1.05rem;

    max-width:520px;

    margin-bottom:35px;

}

.hero-image{

    max-width:520px;

    margin:auto;

}



/* =====================================================
   SECTION TITLE
====================================================== */

.section{

    padding:90px 0;

}

.section h2{

    font-size:2.3rem;

    margin-bottom:15px;

}

.section p{

    font-size:1rem;

}



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

.service-card{

    background:#fff;

    padding:35px 25px;

    border-radius:var(--radius);

    border:1px solid var(--border);

    text-align:center;

    transition:.35s;

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}

.service-card .icon{

    width:75px;

    height:75px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:#EEF5FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

}

.service-card h4{

    margin-bottom:15px;

    font-size:1.3rem;

}

.service-card p{

    margin-bottom:0;

}



/* =====================================================
   GALLERY
====================================================== */

.gallery-card{

    overflow:hidden;

    border-radius:var(--radius);

    box-shadow:var(--shadow);

    background:#fff;

}

.gallery-card img{

    transition:.35s;

    height:300px;

    object-fit:cover;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-card{

    overflow:hidden;

    border-radius:12px;

}

.gallery-card img{

    width:100%;

    height:300px;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

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

.about-list{

    list-style:none;

    padding-left:0;

    margin-top:25px;

}

.about-list li{

    padding:10px 0;

    color:var(--secondary);

    font-weight:500;

}



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

.contact-section{

    background:#F8FAFC;

}

.contact-box{

    background:#fff;

    padding:30px;

    border-radius:var(--radius);

    border:1px solid var(--border);

    text-align:center;

    height:100%;

    transition:.30s;

}

.contact-box:hover{

    box-shadow:var(--shadow);

    transform:translateY(-5px);

}

.contact-box h5{

    margin-bottom:15px;

}

.contact-box p{

    margin-bottom:0;

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

.footer{

    background:#0F172A;

    color:#fff;

    padding:60px 0 25px;

}

.footer h5{

    color:#fff;

    margin-bottom:20px;

    font-size:1.4rem;

}

.footer p{

    color:#CBD5E1;

    margin-bottom:8px;

}

.footer a{

    color:#CBD5E1;

    text-decoration:none;

    transition:.30s;

}

.footer a:hover{

    color:#fff;

}


/* =====================================================
   BADGE
====================================================== */

.badge{

    padding:10px 18px;

    font-size:.90rem;

    border-radius:50px;

    font-weight:600;

}


/* =====================================================
   IMAGES
====================================================== */

img{

    max-width:100%;

    height:auto;

}


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

.mb-6{

    margin-bottom:4rem;

}

.mt-6{

    margin-top:4rem;

}

.py-6{

    padding:6rem 0;

}


/* =====================================================
   SHADOW UTILITIES
====================================================== */

.shadow-soft{

    box-shadow:var(--shadow);

}

.rounded-custom{

    border-radius:var(--radius);

}


/* =====================================================
   HOVER EFFECTS
====================================================== */

.card-hover{

    transition:.30s ease;

}

.card-hover:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow);

}


/* =====================================================
   SCROLLBAR
====================================================== */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#F3F4F6;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:var(--primary-dark);

}


/* =====================================================
   SELECTION
====================================================== */

::selection{

    background:var(--primary);

    color:#fff;

}


/* =====================================================
   SMOOTH TRANSITIONS
====================================================== */

button,
a,
.service-card,
.gallery-card,
.contact-box{

    transition:.30s ease;

}


/* =====================================================
   FORM ELEMENTS
====================================================== */

input,
textarea,
select{

    border-radius:10px;

    border:1px solid var(--border);

    padding:12px 15px;

    width:100%;

    outline:none;

    transition:.30s;

}

input:focus,
textarea:focus,
select:focus{

    border-color:var(--primary);

    box-shadow:0 0 0 .2rem rgba(13,110,253,.15);

}


/* =====================================================
   PLACEHOLDER
====================================================== */

::placeholder{

    color:#9CA3AF;

}


/* =====================================================
   LISTS
====================================================== */

ul{

    padding-left:18px;

}


/* =====================================================
   FINAL POLISH
====================================================== */

body{

    overflow-x:hidden;

}

.hero,
.section,
.footer{

    position:relative;

}

.text-primary{

    color:var(--primary)!important;

}

.bg-primary{

    background:var(--primary)!important;

}
.login-logo{

    width:120px !important;
    height:120px !important;

    max-width:120px !important;

    max-height:120px !important;
}
/* HERO CAROUSEL */

.hero-image{
    width:100%;
    height:550px;
    object-fit:cover;
    border-radius:12px;
}

.carousel-inner{
    border-radius:12px;
}

.carousel-item{
    transition:transform .6s ease-in-out;
}