/* ==========================================================
   SHRADDHA MANAGEMENT CONSULTANCY
   Homepage Design System
========================================================== */

:root{

    --primary:#0B5ED7;
    --primary-dark:#084298;
    --secondary:#FF7A00;

    --heading:#0B2341;
    --text:#4B5563;
    --light:#F8FAFC;
    --white:#FFFFFF;

    --border:#E5E7EB;

    --success:#16A34A;

    --radius-sm:8px;
    --radius:16px;
    --radius-lg:24px;
    --radius-xl:32px;

    --shadow-sm:0 5px 15px rgba(0,0,0,.05);
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --shadow-lg:0 30px 70px rgba(0,0,0,.12);

    --container:1320px;

    --transition:.35s ease;

}

/* RESET */

*,
*::before,
*::after{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:"Inter",sans-serif;
    font-size:16px;
    line-height:1.7;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

.smc-container{

    width:min(92%,var(--container));
    margin:auto;

}