/*
Theme Name: Veris
Theme URI: #
Author: Balamurugan
Version: 1.0
Text Domain: veris
*/

:root {
    --primary: #0e1f30;
    --secondary: #0e1f30;
    --heading: #111827;
    --body: #4B5563;
    --white: #fff;
    --border: #E5E7EB;
}
/* ==========================
   GLOBAL TYPOGRAPHY
========================== */

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(42px, 5vw, 72px);
}

h2 {
    font-size: 36px;
}

h3 {
    font-size: 36px;
}

h4 {
    font-size: 28px;
}

h5 {
    font-size: 24px;
}

h6 {
    font-size: 18px;
}

p {
    margin: 0 0 1.5rem;
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--body);
}

a {
    text-decoration: none;
    transition: all .3s ease;
}

strong,
b {
    font-weight: 600;
}

small {
    font-size: 14px;
    line-height: 1.5;
}

.container { max-width: 1280px; margin: auto; padding: 0 20px; }

.screen-reader-text {
    position: absolute;
    left: -9999px;
}

.screen-reader-text:focus {
    left: 20px;
    top: 20px;
    z-index: 9999;
    background: #fff;
    padding: 10px;
}


.menu-toggle {
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #111827;
    margin: 6px 0;
}

@media(max-width:991px){

    .menu-toggle{
        display:block;
    }

    .main-navigation{
        position:fixed;
        top:70px;
        left:-100%;
        width:300px;
        height:100vh;
        background:#fff;
        transition:.3s;
        padding:30px;
        z-index:999;
    }

    .main-navigation.active{
        left:0;
    }

    .main-navigation ul{
        flex-direction:column;
        gap:20px;
    }

    .header-cta{
        display:none;
    }
	a.btn.btn-primary.header-cta {
		display: none !important;
	}
}
@media (max-width: 991px) {

    .main-navigation {
        display: none;
    }

    .main-navigation.active {
        display: block;
    }

}
.custom-logo-link img {
	width: 75px;
	height: auto;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    width: 280px;
    text-align: center;
}

.loader-logo img {
    width: 90px;
    height: auto;
    display: block;
    margin: 0 auto 25px;
}

.loader-percentage {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.loader-line {
    height: 8px;
    background: #e5e7eb;
    border-radius: 999px;
    overflow: hidden;
}

.loader-line span {
    display: block;
    height: 100%;
    width: 0%;
    background: #111827;
    border-radius: 999px;
    transition: width .15s linear;
}

.loader-logo img{
    width:80px;
    height:auto;
    display:block;
    margin:auto;
}

@keyframes loaderLine {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(350%);
    }
}