/* ==========================================================
   POTECH RTI AI
   Developed By : Potech Technologies
   Version : 1.0
========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0d6efd;
    --primary-dark:#0b5ed7;

    --orange:#FF9933;
    --green:#138808;

    --dark:#1f2937;
    --gray:#6b7280;

    --light:#f8fafc;

    --border:#e5e7eb;

    --white:#ffffff;

    --radius:12px;

    --transition:.30s;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Noto Sans Devanagari',sans-serif;

    background:#f4f7fb;

    color:#333;

    line-height:1.8;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

img{

    max-width:100%;

}

.section-title{

    font-weight:700;

    color:var(--dark);

}

.text-primary{

    color:var(--primary)!important;

}



