/* navigation */
* {
    font-family: "Comic Relief", system-ui;
    transition: all 0.5s;
}
:root {
    --theme-color: #ff4c99;
    --theme-color-2: #a8d000;
    --theme-color-3: #eeffbe;
    --theme-color-4: #ff006f;
    --main-font: "Comic Relief", system-ui;
    --secondary-font: "Lacquer", system-ui;
    --cabin-font: "Cabin Sketch", sans-serif;
    --rubik-font: "Rubik Dirt", system-ui;
    --rubik2-font: "Rubik Moonrocks", sans-serif;
    --poppins-font: "Poppins", sans-serif;
}

a:hover {
    color: var(--theme-color);
}
p {
    color: #666;
    font-size: 16px;
    font-weight: 500;
}
section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
body :is(h1, h2, h3, h4, h5, h6) {
    font-size: inherit;
    font-weight: 700;
}
.header-navigation {
    position: relative;
    background-color: transparent;
    z-index: 2;
}

.nav-icon a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    color: #fff;
}
span.nav-icon.border-right {
    border-right: 1px solid #ffffff33;
    padding-right: 20px;
}
.header-social-media a {
    width: 40px;
    height: 40px;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #ffffff33;
}
.header-social-media {
    border-left: 1px solid #ffffff33;
    margin-right: 20px;
}
.header-social-media a:hover {
    color: var(--theme-color);
    background: #fff;
}
a.auth-btn:hover {
    color: var(--theme-color);
}
a.auth-btn {
    font-weight: 500;
    color: #fff;
}

img.main-logo {
    width: 100px;
}

/* navigating */
.navbar-nav .nav-link {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    padding: 0 25px !important;
}
.navbar-nav .nav-link:hover {
    color: var(--theme-color);
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--theme-color);
}
nav.main-navbar {
    background: #d9f7ca;
    position: relative;
}
nav.navbar.main-navbar.page-nav {
    background: #1787dd30;
}

ul.dropdown-menu {
    background-color: #ffffff;
    padding: 16px 0;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 700;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
    border-radius: 20px;
    border: none;
}
.dropdown-menu a.dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 7px;
    padding-top: 7px;
}
.dropdown-menu li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.dropdown-menu li:last-child {
    border-bottom: none;
}
.dropdown-item:hover,
.dropdown-item:focus {
    color: #1e2125;
    background-color: var(--theme-color-lite);
}

/* Scroll activated */

.slide-left {
    transform: translateX(-100px);
    transition: transform 1s ease;
}
.slide-right {
    transform: translateX(100px);
    transition: transform 1s ease;
}
.scroll-animate.active .slide-left,
.scroll-animate.active .slide-right {
    transform: translateX(0);
}
.slide-up {
    transform: translateY(100px);
    transition: transform 1s ease;
}
.slide-down {
    transform: translateY(-100px);
    transition: transform 1s ease;
}
.scroll-animate.active .slide-up,
.scroll-animate.active .slide-down {
    transform: translateY(0);
}

/* page style */

.btn {
    border-radius: 1.5rem;
    border: none;
}
.btn.btn-primary {
    background-color: var(--theme-color);
    opacity: 0.8;
}
.btn.btn-primary:hover {
    background-color: var(--theme-color);
    opacity: 1;
}

/* Footer */
img.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
}
.call-sec a,
.call-sec p {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}
.call-sec i {
    color: var(--theme-color-3);
}
footer.footer.footer-main {
    padding: 60px 0;
    background: #303094cc;
    position: relative;
    z-index: 1;
}
footer.footer.footer-main::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url(../images/bg/bg-img-08.jpg);
    background-repeat: repeat-x;
    background-position: bottom;
    background-size: cover;
    z-index: -1;
    opacity: 0.3;
    filter: blur(1px);
}
footer,
footer a,
footer p {
    color: #fff;
}

footer a:hover {
    color: var(--theme-color-3);
}
h4.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    text-transform: uppercase;
}
ul.footer-links li.footer-links-item {
    font-size: 16px;
    margin-bottom: 10px;
}
footer.footer.footer-secondary {
    background: var(--theme-color-2);
    padding: 20px 0;
    border-top: 1px solid #ddd;
}
ul.sec-footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: end;
}
span.company,
span.company a {
    font-weight: 700;
    color: var(--theme-color-2);
}

/* success Register page */

.reg-suc-content {
    text-align: center;
}

.reg-cont-title {
    font-size: 60px;
    margin-bottom: 20px;
    color: transparent;
    background-image: linear-gradient(45deg, #1787dd, #113f62);
    background-clip: text;
    font-weight: 800;
    font-family: var(--cabin-font);
}
h2.sub-desc {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 30px;
}
img.thankyou-img {
    width: 700px;
    height: auto;
    margin: 0 auto;
}
.btn-button {
    background: var(--theme-color);
    padding: 10px 30px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.btn-button:hover {
    background: var(--theme-color-4);
    color: #fff;
}

a.btn-button.red-color {
    background: #ef2674;
}

a.btn-button.red-color:hover {
    background: #9b003b;
}

/* home page */

h4.logo.logo-text {
    font-size: 20px;
    color: #001c32;
    text-transform: uppercase;
    font-weight: 700;
    font-family: var(--rubik2-font);
}
.secondary-navbar {
    background-color: var(--theme-color-2);
    color: #fff;
}

.profile.profile-create {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    border-radius: 50%;
    border: 5px solid var(--theme-color-2);
}

.profile.profile-create img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input#profile_img {
    position: absolute;
    bottom: 0;
    background: #eeffbe6e;
    padding-top: 75px;
    font-size: 10px;
    text-align: center;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

input#profile_img:focus {
    outline: none;
    cursor: pointer;
}

.student-profile {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border: 2px solid #ddd;
}
.file-input-frame {
    position: relative;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
    border: 1px dashed #d2d5db;
    color: #444;
    cursor: pointer;
    transition: background 0.2s ease-in-out, border 0.2s ease-in-out;
}
.file-input {
    width: 350px;
    max-width: 100%;
    padding: 5px !important;
    border-radius: 10px !important;
    overflow: hidden !important;
    border: 1px solid #dee2e6 !important;
}
.form-area .form-control {
    background: #fff;
    border: none;
    border-bottom: 1px dashed #d6ef90;
    padding: 12px;
    border-radius: 0;
    margin-bottom: 10px;
    position: relative;
    z-index: 3;
}
.form-area .form-control:focus {
    box-shadow: none;
    border-bottom: 1px solid var(--theme-color-2);
}
label.form-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.5em;
    color: var(--theme-color-4);
    position: relative;
    z-index: 3;
}
button.btn.btn-submit {
    background: var(--theme-color);
    padding: 13px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    position: relative;
    z-index: 3;
}
button.btn.btn-submit:active {
    background: var(--theme-color-2);
    color: #fff;
}

/* custom Style */

h4.form-title {
    font-family: var(--rubik2-font);
    font-size: 35px;
    display: block;
    background: #ff4c99;
    text-align: center;
    padding: 20px;
    border-radius: 1rem;
    color: #eeffbe;
    text-transform: uppercase;
    margin-bottom: 30px;
}

section.home-page {
    padding: 100px 0 180px 0px;
    background-color: var(--theme-color-3);
}
section.home-page::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    background-color: var(--theme-color-3);
    background-image: url(../images/bg-forest-1.jpg);
    background-position: top;
    background-size: cover;
    opacity: 0.2;
}
.forms-area {
    background: #fff;
    padding: 50px 50px;
    border-radius: 3rem;
    border: 10px solid var(--theme-color-2);
}

/* shapes animation bg */

img.img-shapes {
    position: absolute;
    object-fit: contain;
    height: auto;
    z-index: 1;
}
img.img-shapes.img-hippo {
    width: 500px;
    height: auto;
    bottom: -20px;
    right: -20px;
}
img.img-shapes.img-shrub-left {
    right: -20px;
    bottom: 0;
    width: 250px;
    height: auto;
    z-index: -1;
}
img.img-shapes.img-tree-left {
    bottom: 30%;
    right: -20px;
    width: 300px;
    height: auto;
}
img.img-shapes.img-tree-right {
    bottom: 15%;
    left: -40px;
    width: 400px;
    height: auto;
}
img.img-shapes.img-shrub-right {
    bottom: -30px;
    left: -40px;
    width: 400px;
    object-position: bottom;
}
img.img-shapes.img-cloud-1 {
    bottom: 50%;
    right: -40px;
    width: 300px;
}
img.img-shapes.img-cloud-2 {
    bottom: 50%;
    left: 0;
    width: 300px;
    height: auto;
}
img.img-shapes.img-top-sun {
    top: 0;
    right: 0;
    width: 300px;
}
img.img-shapes.img-giraffe {
    top: 0;
    left: -35px;
    width: 500px;
}
img.img-shapes.img-cloud-3 {
    top: 0;
    left: 0;
    width: 300px;
    z-index: -1;
}
img.img-shapes.img-cloud-4 {
    top: 20%;
    left: 8%;
    width: 200px;
}
img.img-shapes.img-cloud-5 {
    top: 15%;
    right: 0%;
    width: 200px;
}
img.img-shapes.img-crane {
    bottom: 60px;
    right: -180px;
    width: 200px;
    z-index: -1;
}
.form-area.form-body {
    position: relative;
}
h2.heading {
    font-family: var(--secondary-font);
    font-size: 24px;
    color: var(--theme-color-2);
    margin-bottom: 20px;
}
.sub-heading {
    font-size: 12px;
    background: var(--theme-color);
    display: inline-block;
    padding: 5px 10px;
    margin-bottom: 12px;
    border-radius: 1rem;
    color: #fff;
}
img.bg-shape {
    position: absolute;
    object-fit: contain;
    height: auto;
}
section.login-page {
    min-height: 800px;
    background-image: url(../images/shape-11.png);
    background-position: center;
    background-size: contain;
    background-repeat: repeat;
}

.section-header {
    background-image: url(../images/shape-24.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    padding: 60px;
}
.login-form-sec {
    position: relative;
    z-index: 3;
}
img.bg-shape.shape-img-1 {
    width: 120px;
    top: 35% 280px;
    left: 0;
}
img.bg-shape.shape-img-2 {
    width: 170px;
    bottom: 2%;
    left: 0;
    right: 0;
    margin: 0 auto;
}
img.bg-shape.shape-img-3 {
    width: 170px;
    bottom: 2%;
    left: 20%;
    right: 0;
    margin: 0 auto;
}
img.bg-shape.shape-img-4 {
    width: 400px;
    bottom: 25%;
    right: -8%;
    margin: 0 auto;
    z-index: -1;
    rotate: 70deg;
}
img.bg-shape.shape-img-5 {
    width: 200px;
    top: 23%;
    left: -80px;
    z-index: -1;
}
img.bg-shape.shape-img-6 {
    width: 500px;
    bottom: -10%;
    left: 12%;
    z-index: -1;
}
img.bg-shape.shape-img-7 {
    width: 200px;
    bottom: -30px;
    right: 5%;
}
img.bg-shape.shape-img-8 {
    width: 100px;
    right: 0;
    bottom: 25%;
}
img.bg-shape.shape-img-9 {
    width: 200px;
    top: -30%;
    left: 0;
    right: 0;
    rotate: -90deg;
    margin: 0 auto;
    z-index: -1;
}
img.bg-shape.shape-img-10 {
    width: 200px;
    bottom: 0;
    left: 48%;
    z-index: -1;
}
img.bg-shape.shape-img-12 {
    width: 60px;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
img.bg-shape.shape-img-13 {
    width: 300px;
    bottom: -35px;
    right: 19%;
}
img.bg-shape.shape-img-14 {
    width: 400px;
    bottom: 0;
    left: 0;
}
img.bg-shape.shape-img-15 {
    width: 200px;
    bottom: -50px;
    right: 10%;
}
img.bg-shape.shape-img-16 {
    width: 400px;
    top: 0;
    right: 0;
}
img.bg-shape.shape-img-17 {
    width: 200px;
    bottom: -50px;
    right: 0;
}
img.bg-shape.shape-img-18 {
    width: 80px;
    bottom: 5%;
    left: 20%;
    margin: 0 auto;
}
img.bg-shape.shape-img-19 {
    width: 200px;
    top: 0;
    right: 20%;
}
img.bg-shape.shape-img-20 {
    width: 150px;
    top: 0;
    left: 0;
}
img.bg-shape.shape-img-21 {
    width: 100px;
    top: 45%;
    right: 22%;
}
img.bg-shape.shape-img-22 {
    width: 200px;
    top: 50%;
    right: 0;
}
img.bg-shape.shape-img-23 {
    width: 200px;
    top: 135px;
    left: 60px;
    z-index: -1;
    transform: rotate(45deg);
}
.parents-card {
    background: var(--theme-color-3);
    padding: 20px;
    border-radius: 1rem;
    margin-bottom: 1em;
}
.parents-heading h4 {
    font-size: 35px;
    margin-bottom: 13px;
    font-family: var(--cabin-font);
}
.parents-card .form-control {
    background-color: var(--theme-color-3);
}
