/* ==========================================
   INDIANASTROVEDIC DESIGN SYSTEM
   Version : 1.0
========================================== */

:root{

    /* Brand Colors */
    --primary:#0B3C5D;
    --primary-dark:#07283F;

    --gold:#D4AF37;
    --gold-light:#F5C542;

    --white:#ffffff;
    --light:#F8FAFC;
    --gray:#6B7280;
    --dark:#1F2937;

    --border:#E5E7EB;

    /* Radius */

    --radius-sm:10px;
    --radius:18px;
    --radius-lg:28px;

    /* Shadow */

    --shadow-sm:0 8px 25px rgba(0,0,0,.06);

    --shadow:
    0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:
    0 25px 60px rgba(0,0,0,.12);

    /* Transition */

    --transition:.35s ease;

}

/* Reset */

body{

    background:var(--light);

    color:var(--dark);

    font-size:17px;

    line-height:1.8;

    overflow-x:hidden;

}

/* Headings */

h1,h2,h3,h4,h5{

    color:var(--primary);

    font-weight:700;

    line-height:1.3;

}

h1{

    font-size:52px;

}

h2{

    font-size:40px;

}

h3{

    font-size:28px;

}

p{

    color:#555;

}

/* Section */

section{

    padding:90px 0;

}

/* Images */

img{

    max-width:100%;

}

/* Links */

a{

    transition:var(--transition);

    text-decoration:none;

}

/* Container */

@media(min-width:1400px){

.container{

max-width:1320px;

}

}