/* navigation */
* {
    font-family: "Poppins", sans-serif;
    transition: all 0.5s;
}

:root {
    --theme-color: #407bff;
    --theme-color-2: #455a64;
    --theme-color-3: #12a2dc;
    --theme-color-4: #172f37;
    --main-font: "Open Sans", sans-serif;
    --secondary-font: "Great Vibes", cursive;
    --abril-font: "Abril Fatface", 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;
    margin-bottom: 20px;
}

/* 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: transparent;
    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: #3e008b;
    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;
}

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: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

.secondary-navbar {
    background-color: var(--theme-color-2);
    color: #fff;
}

.profile.profile-create {
    width: 130px;
    height: 130px;
    margin: 0 auto;
    border: 2px solid #f3f4f6;
    overflow: hidden;
    position: relative;
}

.profile.profile-create img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

input#profile_img {
    position: absolute;
    bottom: 0;
    background: #f5f5f552;
    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: #e8f0fe;
    border: none;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.form-area .form-control:focus {
    box-shadow: 0 0 0 1px rgba(13, 110, 253, 0.25);
}

label.form-label {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 0.5em;
    color: var(--theme-color-4);
}

button.btn.btn-submit {
    background: #390086;
    padding: 10px 30px;
    color: #fff;
    font-weight: 600;
    min-width: 200px;
    border-radius: 0;
}

button.btn.btn-submit:active {
    background: var(--theme-color-2);
    color: #fff;
}

/* .form-section {
    background: #e1e1e1;
    padding: 20px 60px;
    border-color: #172f37;
    border-style: solid;
    border-width: 1px;
    border-radius: 30px;
    z-index: 2;
} */
.form-heading {
    padding: 20px;
    color: var(--theme-color);
}

h4.form-title {
    text-align: center;
    font-size: 24px;
    margin: 0;
    font-weight: 600;
}

.forms-area {
    padding: 20px;
}

.form-body {
    background-color: #fff;
    border: 1px solid var(--theme-color-4);
    z-index: 4;
    position: relative;
}

section.home-page {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom center;
}

body.antialiased.main-body {
    background: linear-gradient(45deg, #390086, #97e5f2);
}

/* section.form-page {
    background: linear-gradient(45deg, #390086, #97e5f2);
} */

img.lady-image-form {
    position: absolute;
    height: 800px;
    width: auto;
    bottom: 0px;
    right: 10px;
    z-index: 2;
}

img.pot-image-form {
    position: absolute;
    height: 500px;
    width: auto;
    bottom: 0px;
    left: 50px;
    z-index: 2;
}

span.nav-icon a {
    font-size: 15px;
}

.sub-heading {
    background: var(--theme-color);
    display: inline-block;
    margin-bottom: 10px;
    padding: 5px 15px;
    border-radius: 2rem;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

h2.heading {
    font-size: 24px;
    margin-bottom: 10px;
}

section.login-page {
    background-image: url(../images/bg-2.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 200px 0;
}

img.boy-image-form {
    position: absolute;
    height: 500px;
    width: auto;
    bottom: 0;
    left: 30%;
}

.pot2-image-form {
    position: absolute;
    height: 300px;
    width: auto;
    bottom: 0px;
    right: 20%;
    z-index: 2;
}

.register-success-page {
    background-image: url(../images/success-bg.png);
    background-position: center top;
    background-size: cover;
}

.grid-center {
    display: grid;
    align-content: center;
}

.login-form-sec {
    background: #ffffff;
    padding: 50px;
    border-radius: 30px;
    border: 1px solid #407bff;
}

.custom-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 14px 24px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: fadeInOut 4s ease forwards;
}

.success-toast {
    background-color: #333;
}

.error-toast {
    background-color: #d9534f;
}

button.otp-btn {
    background: #455a64;
    font-size: 14px;
    color: #fff;
}

button.otp-btn:hover {
    background: var(--theme-color-4);
}

h2.sec-heading {
    font-size: 60px;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #380085, #cd7ef2);
    background-clip: text;
    color: transparent;
}

input.form-control {
    border-radius: 0;
    padding: 10px;
}

.btns.after-login-btn {
    display: grid;
    align-items: center;
    gap: 20px;
}