/* ===========================================================
   All Chandak Families
   Modern UI v1.0
   Developed by Chandak Infotech
=========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Noto+Sans+Devanagari:wght@400;500;600;700&display=swap');

:root {

    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #0ea5e9;

    --success: #16a34a;
    --danger: #ef4444;

    --background: #f4f8ff;
    --card: #ffffff;

    --text: #1e293b;
    --text-light: #64748b;

    --border: #dbeafe;

    --radius: 18px;

    --shadow:
        0 10px 30px rgba(15, 23, 42, .08);

}

/*=============================
BODY
=============================*/

body {

    font-family: 'Poppins', 'Noto Sans Devanagari', sans-serif;

    background: linear-gradient(180deg,
            #eef5ff 0%,
            #f8fbff 100%);

    color: var(--text);

    font-size: 15px;

    line-height: 1.7;

}

/*=============================
HEADINGS
=============================*/

h1,
h2,
h3,
h4,
h5,
h6 {

    font-weight: 700;

    color: var(--text);

}

a {

    text-decoration: none;

}

/*=============================
HERO
=============================*/

.hero {

    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--secondary));

    border-radius: 30px;

    color: #fff;

    padding: 60px 40px;

    text-align: center;

    margin-bottom: 35px;

    position: relative;

    overflow: hidden;

    box-shadow:

        0 20px 40px rgba(37, 99, 235, .25);

}

.hero::before {

    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

    top: -160px;
    right: -120px;

}

.hero::after {

    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    background: rgba(255, 255, 255, .08);

    border-radius: 50%;

    bottom: -100px;
    left: -100px;

}

.hero-icon {

    width: 90px;

    height: 90px;

    margin: auto;

    margin-bottom: 20px;

    background: #fff;

    border-radius: 50%;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 40px;

    color: var(--primary);

    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);

    position: relative;

    z-index: 10;

}

.hero h1 {

    font-size: 42px;

    color: #fff;

}

.hero p {

    font-size: 18px;

    opacity: .95;

    margin-top: 10px;

}

/*=============================
CARD
=============================*/

.card-modern {

    background: #fff;

    border: none;

    border-radius: 25px;

    padding: 35px;

    box-shadow: var(--shadow);

    margin-bottom: 30px;

}

/*=============================
NOTICE
=============================*/

.notice {

    background: #f0fdf4;

    border-left: 5px solid var(--success);

    padding: 18px;

    border-radius: 15px;

}

.notice ul {

    margin: 0;

    padding-left: 18px;

}

/*=============================
FORM
=============================*/

.form-label {

    font-weight: 600;

    margin-bottom: 8px;

}

.required {

    color: red;

}

.form-control,
.form-select {

    height: 58px;

    border-radius: 15px;

    border: 1px solid var(--border);

    padding-left: 18px;

    font-size: 15px;

    transition: .25s;

}

textarea.form-control {

    height: 130px;

    padding-top: 15px;

    resize: none;

}

.form-control:focus,
.form-select:focus {

    border-color: var(--primary);

    box-shadow:

        0 0 0 .2rem rgba(37, 99, 235, .12);

}

/*=============================
INPUT ICON
=============================*/

.input-group-text {

    background: #fff;

    border-radius: 15px 0 0 15px;

    border-color: var(--border);

    color: var(--primary);

}

/*=============================
BUTTON
=============================*/

.btn-primary-modern {

    background: linear-gradient(90deg,
            var(--primary-dark),
            var(--secondary));

    border: none;

    height: 60px;

    border-radius: 15px;

    font-weight: 600;

    font-size: 18px;

    color: #fff;

    transition: .3s;

    box-shadow:

        0 10px 25px rgba(37, 99, 235, .25);

}

.btn-primary-modern:hover {

    transform: translateY(-3px);

    box-shadow:

        0 18px 40px rgba(37, 99, 235, .30);

}

/*=============================
SECTION TITLE
=============================*/

.section-title {

    font-size: 22px;

    font-weight: 700;

    margin-bottom: 20px;

    padding-bottom: 10px;

    border-bottom: 2px solid #e5efff;

}

/*=============================
FOOTER
=============================*/

.footer {

    margin-top: 40px;

    padding: 20px;

    text-align: center;

}

.developer-card {

    display: inline-block;

    background: #fff;

    padding: 20px 30px;

    border-radius: 20px;

    box-shadow: var(--shadow);

}

.developer-card small {

    display: block;

    margin-bottom: 12px;

    color: var(--text-light);

    font-size: 13px;

}

.developer-card a {

    display: flex;

    align-items: center;

    gap: 15px;

}

.logo-circle {

    width: 55px;

    height: 55px;

    border-radius: 50%;

    background: linear-gradient(135deg,
            var(--primary-dark),
            var(--secondary));

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 22px;

}

.developer-card h6 {

    margin: 0;

    font-size: 17px;

    font-weight: 700;

    color: var(--text);

}

.developer-card span {

    font-size: 13px;

    color: var(--text-light);

}

/*=============================
TABLETS
=============================*/

@media(max-width:992px) {

    .hero {

        padding: 45px 25px;

    }

    .hero h1 {

        font-size: 32px;

    }

}

/*=============================
MOBILE
=============================*/

@media(max-width:768px) {

    .hero {

        padding: 35px 20px;

        border-radius: 20px;

    }

    .hero h1 {

        font-size: 28px;

    }

    .hero p {

        font-size: 15px;

    }

    .hero-icon {

        width: 70px;

        height: 70px;

        font-size: 30px;

    }

    .card-modern {

        padding: 22px;

        border-radius: 18px;

    }

    .form-control,
    .form-select {

        height: 52px;

    }

    .btn-primary-modern {

        height: 55px;

        font-size: 16px;

    }

    .developer-card {

        padding: 18px;

    }

    .developer-card a {

        flex-direction: column;

        text-align: center;

    }

}