/*==========================================================
    SCANSKRIT WEBSITE
    VERSION 1.0 - PART 1
    Design System Foundation
==========================================================*/

/*==========================
Google Font
==========================*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');


/*==========================
CSS Variables
==========================*/

:root{

    --primary:#2E9B57;
    --primary-light:#DDF3E5;

    --background:#F6F8F7;

    --surface:#FFFFFF;

    --text:#1D2433;

    --text-light:#7D879C;

    --success:#27AE60;

    --danger:#E74C3C;

    --border:#E8ECEB;

    --glass:rgba(255,255,255,.72);

    --glass-border:rgba(255,255,255,.45);

    --shadow-soft:
        0 10px 35px rgba(29,36,51,.06);

    --shadow-medium:
        0 18px 45px rgba(29,36,51,.10);

    --shadow-green:
        0 0 35px rgba(46,155,87,.18);

    --radius-xs:8px;

    --radius-sm:14px;

    --radius-md:18px;

    --radius-lg:26px;

    --radius-pill:999px;

    --transition:.30s ease;

    --container:1360px;

}


/*==========================
Reset
==========================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

*::before,
*::after{

    box-sizing:border-box;

}


/*==========================
HTML
==========================*/

html{

    scroll-behavior:smooth;

    scroll-padding-top:120px;

}


/*==========================
Body
==========================*/

body{

    font-family:"Inter",sans-serif;

    background:var(--background);

    color:var(--text);

    line-height:1.6;

    overflow-x:hidden;

    -webkit-font-smoothing:antialiased;

}


/*==========================
Selection
==========================*/

::selection{

    background:var(--primary);

    color:#fff;

}


/*==========================
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;

    font-family:inherit;

}


/*==========================
Container
==========================*/

.nav-container{

    width:min(92%,var(--container));

    margin:auto;

}


/*==========================
Background
==========================*/

body::before{

    content:"";

    position:fixed;

    inset:0;

    z-index:-3;

    background:

    radial-gradient(circle at 15% 20%,
    rgba(46,155,87,.08),
    transparent 28%),

    radial-gradient(circle at 82% 18%,
    rgba(46,155,87,.06),
    transparent 30%),

    radial-gradient(circle at 70% 80%,
    rgba(46,155,87,.05),
    transparent 38%),

    var(--background);

}


/*==========================
Floating Glow
==========================*/

body::after{

    content:"";

    position:fixed;

    width:420px;

    height:420px;

    border-radius:50%;

    background:rgba(46,155,87,.08);

    filter:blur(120px);

    top:-120px;

    right:-120px;

    z-index:-2;

}


/*==========================
Top Accent
==========================*/

.top-accent{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:2px;

    z-index:99999;

    background:linear-gradient(

        90deg,

        transparent,

        var(--primary),

        #67c98d,

        var(--primary),

        transparent

    );

    background-size:300%;

    animation:accentMove 8s linear infinite;

}

@keyframes accentMove{

    from{

        background-position:0%;

    }

    to{

        background-position:300%;

    }

}


/*==========================
Typography
==========================*/

h1,h2,h3,h4{

    font-weight:700;

    letter-spacing:-.02em;

    color:var(--text);

}

p{

    color:var(--text-light);

}


/*==========================
Section
==========================*/

section{

    width:100%;

    padding:120px 0;

}


/*==========================
Utilities
==========================*/

.text-center{

    text-align:center;

}

.hidden{

    display:none;

}

.blur{

    backdrop-filter:blur(18px);

}


/*==========================
Transitions
==========================*/

a,
button,
img{

    transition:var(--transition);

}

/*==========================
Cookies Start
==========================*/

.cookie-icon{

    width:54px;

    height:54px;

    flex-shrink:0;

}

.cookie-icon img{

    width:100%;

    height:100%;

    display:block;

    object-fit:contain;

}

/* ==========================================================
   Cookie Banner
========================================================== */

.cookie-banner{

    position:fixed;

    left:50%;

    bottom:24px;

    transform:translateX(-50%) translateY(140%);

    width:min(920px, calc(100% - 32px));

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border:1px solid rgba(46,155,87,.12);

    border-radius:24px;

    box-shadow:
        0 18px 50px rgba(18,38,63,.14);

    padding:28px;

    z-index:9999;

    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        opacity .45s ease;

    opacity:0;

}


/* ==========================================================
   Visible State
========================================================== */

.cookie-banner.show{

    transform:translateX(-50%) translateY(0);

    opacity:1;

}


/* ==========================================================
   Close Button
========================================================== */

.cookie-close{

    position:absolute;

    top:18px;

    right:18px;

    width:36px;

    height:36px;

    border:none;

    border-radius:50%;

    background:#F6F8F7;

    color:#7D879C;

    cursor:pointer;

    font-size:1rem;

    transition:.3s ease;

}

.cookie-close:hover{

    background:#DDF3E5;

    color:#2E9B57;

}


/* ==========================================================
   Layout
========================================================== */

.cookie-content{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-bottom:26px;

}


/* ==========================================================
   Icon
========================================================== */

.cookie-icon{

    width:56px;

    height:56px;

    flex-shrink:0;

}

.cookie-icon img{

    width:100%;

    height:100%;

    object-fit:contain;

    display:block;

}


/* ==========================================================
   Text
========================================================== */

.cookie-text h3{

    margin:0 0 10px;

    font-size:1.35rem;

    font-weight:700;

    color:#1D2433;

}

.cookie-text p{

    margin:0;

    color:#7D879C;

    line-height:1.7;

    font-size:.97rem;

}


/* ==========================================================
   Actions
========================================================== */

.cookie-actions{

    display:flex;

    justify-content:flex-end;

    gap:14px;

    flex-wrap:wrap;

}


/* ==========================================================
   Buttons
========================================================== */

.cookie-btn{

    border:none;

    border-radius:999px;

    padding:13px 24px;

    font-size:.95rem;

    font-weight:600;

    cursor:pointer;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;

}


/* ==========================================================
   Customize
========================================================== */

.cookie-btn-secondary{

    background:#F6F8F7;

    color:#1D2433;

}

.cookie-btn-secondary:hover{

    transform:translateY(-2px);

    background:#EAF7EF;

}


/* ==========================================================
   Reject
========================================================== */

.cookie-btn-outline{

    background:#FFFFFF;

    border:1px solid rgba(29,36,51,.12);

    color:#1D2433;

}

.cookie-btn-outline:hover{

    transform:translateY(-2px);

    border-color:#2E9B57;

}


/* ==========================================================
   Accept
========================================================== */

.cookie-btn-primary{

    background:#2E9B57;

    color:#FFFFFF;

    box-shadow:
        0 12px 28px rgba(46,155,87,.28);

}

.cookie-btn-primary:hover{

    transform:translateY(-2px);

    background:#25844A;

}


/* ==========================================================
   Tablet
========================================================== */

@media(max-width:768px){

    .cookie-banner{

        width:calc(100% - 24px);

        padding:24px;

    }

    .cookie-content{

        flex-direction:column;

        gap:18px;

    }

    .cookie-actions{

        justify-content:stretch;

    }

    .cookie-btn{

        flex:1;

        min-width:150px;

    }

}


/* ==========================================================
   Mobile
========================================================== */

@media(max-width:540px){

    .cookie-banner{

        bottom:16px;

        padding:20px;

        border-radius:20px;

    }

    .cookie-actions{

        flex-direction:column;

    }

    .cookie-btn{

        width:100%;

    }

    .cookie-close{

        top:14px;

        right:14px;

    }

}



/*==========================
Cookies End
==========================*/