/*=========================================================
VS TECH CCTV SOLUTIONS
Global Styles
Version : 1.0
=========================================================*/

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:var(--body-font);
    font-size:var(--fs-16);
    color:var(--gray-500);
    background:var(--white);
    line-height:1.7;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;
}

/*==============================
TYPOGRAPHY
==============================*/

h1,h2,h3,h4,h5,h6{
    font-family:var(--heading-font);
    color:var(--gray-900);
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

h1{
    font-size:clamp(42px,6vw,68px);
}

h2{
    font-size:clamp(34px,5vw,52px);
}

h3{
    font-size:32px;
}

h4{
    font-size:24px;
}

h5{
    font-size:20px;
}

h6{
    font-size:18px;
}

p{
    margin-bottom:18px;
}

a{
    text-decoration:none;
    color:inherit;
    transition:var(--transition);
}

a:hover{
    color:var(--primary-800);
}

ul{
    list-style:none;
}

img{
    max-width:100%;
    display:block;
}

button,
input,
textarea,
select{
    font-family:inherit;
    border:none;
    outline:none;
}

button{
    cursor:pointer;
}

/*==============================
SECTIONS
==============================*/

section{
    position:relative;
    padding:var(--section-padding) 0;
}

.container{
    max-width:var(--container-width);
}

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

::selection{
    background:var(--primary-800);
    color:var(--white);
}

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

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:var(--gray-100);
}

::-webkit-scrollbar-thumb{
    background:var(--primary-800);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--primary-900);
}

/*==============================
COMMON BUTTON
==============================*/

.btn-primary-custom{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    height:54px;
    padding:0 28px;

    border-radius:var(--radius-md);

    background:var(--gradient-button);

    color:var(--white);

    font-weight:600;

    transition:var(--transition);

    box-shadow:var(--shadow-blue);
}

.btn-primary-custom:hover{

    transform:translateY(-4px);

    color:var(--white);

    box-shadow:0 18px 45px rgba(29,78,216,.35);

}

.btn-outline-custom{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    height:54px;

    padding:0 28px;

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

    border-radius:var(--radius-md);

    color:var(--primary-800);

    background:transparent;

    font-weight:600;

    transition:var(--transition);

}

.btn-outline-custom:hover{

    background:var(--primary-800);

    color:var(--white);

}

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

.section-badge{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#E0F2FE;

    color:var(--primary-800);

    font-weight:600;

    margin-bottom:18px;

}

.section-title{

    margin-bottom:20px;

}

.section-description{

    max-width:700px;

    margin:auto;

}

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

.card-premium{

    background:var(--white);

    border-radius:var(--radius-lg);

    box-shadow:var(--shadow-sm);

    transition:var(--transition);

    overflow:hidden;

}

.card-premium:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-lg);

}

/*==============================
HELPER CLASSES
==============================*/

.text-primary{
    color:var(--primary-800)!important;
}

.bg-primary-gradient{
    background:var(--gradient-primary);
}

.rounded-xl{
    border-radius:var(--radius-xl);
}

.shadow-premium{
    box-shadow:var(--shadow-lg);
}

.py-section{
    padding:var(--section-padding) 0;
}