/* ==========================================
   KRUSHIVANDANA V2
   Global Styles
========================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@400;500;600;700;800&display=swap');

/* CSS Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* Smooth Scroll */
html{
    scroll-behavior:smooth;
}

/* Body */
body{
    font-family:'Inter',sans-serif;
    font-size:16px;
    line-height:1.7;
    color:#1f2937;
    background:#f8fff5;
    overflow-x:hidden;
    padding-top:80px;   
}

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

/* Links */
a{
    text-decoration:none;
    color:inherit;
}

/* Lists */
ul{
    list-style:none;
}

/* Buttons */
button{
    border:none;
    outline:none;
    cursor:pointer;
    background:none;
}

/* Container */
.container-custom{
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    padding: 0 18px;
}

/* Section */
section{
    padding:100px 0;
}




