/*
Theme Name: Axisory Child
Template: axisory
Version: 1.0.0
Author: Shraddha Management Consultancy
Description: Child theme for Axisory.
*/
/*==================================================
  SHRADDHA MANAGEMENT CONSULTANCY
  Global Design System
==================================================*/

:root{

    /* Brand Colors */
    --primary:#0A2E5C;
    --primary-dark:#071F40;
    --secondary:#C89B3C;

    --success:#1D8A4B;
    --danger:#D32F2F;

    /* Text */
    --text:#1F2937;
    --text-light:#6B7280;

    /* Background */
    --white:#ffffff;
    --light:#F8FAFC;
    --border:#E5E7EB;

    /* Layout */
    --container:1280px;

    /* Radius */
    --radius-sm:6px;
    --radius:12px;
    --radius-lg:20px;

    /* Shadows */
    --shadow-sm:0 2px 8px rgba(0,0,0,.06);
    --shadow:0 8px 25px rgba(0,0,0,.08);
    --shadow-lg:0 20px 50px rgba(0,0,0,.12);

    /* Transition */
    --transition:.35s ease;

}
/*==================================================
RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    color:var(--text);

    background:var(--white);

    line-height:1.7;

    overflow-x:hidden;

}
/*==================================================
CONTAINER
==================================================*/

.smc-container{

    width:min(92%,var(--container));

    margin:auto;

}
/*==================================================
HEADINGS
==================================================*/

h1,
h2,
h3,
h4,
h5,
h6{

    color:var(--primary);

    font-weight:700;

    line-height:1.2;

}

h1{

    font-size:56px;

}

h2{

    font-size:42px;

}

h3{

    font-size:30px;

}

p{

    color:var(--text-light);

    font-size:18px;

}