@import url('https://fonts.googleapis.com/css2?family=Philosopher:ital,wght@0,400;0,700;1,400;1,700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #2a7fba;
    --secondary-color: #00ca9f;
    --white-color: #FFFFFF;
    --footer-color: #03045e;
    --text-color: #434343;
    --text-color-2: #727272;
    --my-font: "Philosopher", serif;
    --box-shadow: 4px 4px 20px 0px rgba(60, 60, 60, 0.2);
    --box-shadow-2: 0px 0px 25px 1px rgba(75, 75, 75, 0.1);
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.1s ease-in;
}

h1,
h2,
h3,
h4 {
    font-weight: 500;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 30px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

ul,
ol {
    padding: 0;
    margin: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}


.my-font {
    font-family: var(--my-font);
}


/* ================================ 
Button styles section 
=================================== */
.button2 {
    display: inline-block;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    z-index: 1;
    color: var(--white-color);
    padding: 0.7em 1.7em;
    cursor: pointer;
    font-size: 16px;
    border-radius: 0.5em;
    background: var(--primary-color);
    border: 1px solid var(--secondary-color);
    font-weight: 600;
}



.button2:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background: linear-gradient(82.3deg,
            rgba(150, 93, 233, 1) 10.8%,
            rgba(99, 88, 238, 1) 94.3%);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button2:hover {
    color: #ffffff;
    border: 1px solid #009087;
}

.button2:hover:before {
    top: -35%;
    background: linear-gradient(82.3deg,
            rgba(150, 93, 233, 1) 10.8%,
            rgba(99, 88, 238, 1) 94.3%);
    ;
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button2:hover:after {
    top: -45%;
    background: linear-gradient(82.3deg,
            rgba(150, 93, 233, 1) 10.8%,
            rgba(99, 88, 238, 1) 94.3%);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.gradient-color {
    color: #5A738E; /* Muted Deep Blue */
    background: linear-gradient(45deg, #6A5ACD, #8A2BE2, #5D8AA8, #4682B4, #4B0082);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 100%;
    animation: animated-text 5s ease infinite;
}




@keyframes animated-text {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}


@-webkit-keyframes animated-text {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 100% 0;
    }

    100% {
        background-position: 0 0;
    }
}


.title {
    font-size: 40px;
    font-family: var(--my-font);
    margin-bottom: 30px;
    font-weight: 700;
}

.my-bg-color {
    background: rgb(249, 249, 255);
}

/* ================================ 
Header Section 
=================================== */
.navbar {
    padding-top: 14px !important;
    padding-bottom: 14px !important;
    background-color: var(--white-color);

}

/* .navbar .navbar-brand>img {
    height: 65px;
} */
.navbar-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--footer-color);
    margin-right: 0 !important;
}

.navbar .nav-link {
    text-decoration: none;
    color: #121212;
    margin: 0 14px;
    font-size: 14px;
    position: relative;
    display: inline-block;
    font-weight: 500;
}


.navbar .nav-item:hover .nav-link {
    color: var(--primary-color);
}

.navbar .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    left: 0;
    bottom: 6px;
    transition: all 0.25s ease-in-out;
}

.navbar .nav-link:hover::before {
    width: 100%;
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }

    .navbar .dropdown-menu-end a i {
        background-color: var(--bs-gray-500);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        /* transform: translateY(20px); */
        transition: all .3s ease-in;
        visibility: hidden;
        /* min-height: 50vh; */
        box-shadow: 0 5px 20px rgba(197, 208, 216, 0.15);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        margin-top: 10px;
        border: 0;
        min-width: 12rem;
        border-radius: 0.5rem;
        box-shadow: 0 10px 20px rgba(15, 39, 125, 0.4);
    }


    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -52px;
        box-shadow: 0 10px 10px rgba(15, 39, 125, 0.14);
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        transform: scaleY(1);
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: #101010;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.5rem 1.5rem;
        text-decoration: none;
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--theme-color);
        background-color: #e8edfa;
    }
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--white-color);
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #56565621;
    animation: fadeInDown 0.45s ease-in-out;
}



/* ================================ 
            Banner Section 
=================================== */

.banner {
    width: 100%;
    height: 70vh;
    background: url('../images/main-bg-new.jpg') no-repeat center;
    background-size: cover;
    overflow: hidden;
}

.banner h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 25px;
    font-family: var(--my-font);
}

.banner h1 span {
    color: var(--primary-color);
}

.banner h3::after {
    content: "";
    width: 70px;
    height: 2px;
    margin-left: 1rem;
    background: linear-gradient(45deg, rgba(150, 93, 233, 1), #72C8FE, #786AFF);
}

.banner p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 28px;
    color: #121212;
}


/* ================================ 
About section 
=================================== */
.about .inner-contain {
    padding: 8px;
    background: linear-gradient(45deg, rgba(150, 93, 233, 1), #72C8FE, #786AFF, #679AFF, #5297f1);
    border-radius: 5px;
}

.about h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 45px;
    letter-spacing: 0.25px;
    margin-bottom: 20px;
}

.about img {
    filter: drop-shadow(4px 0px 1px rgba(107, 107, 107, 0.17));
}

.about h3,
.about-us h3 {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(90deg, rgba(251, 160, 7, 1) 0%, rgba(53, 127, 0, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.5px;
    font-family: var(--my-family-2);
}

.info ul li {
    margin-bottom: 8px;
}


/* ================================ 
Journal section 
=================================== */
.journal .layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
}

.journal .layer .btn2 {
    display: inline-block;
    padding: 8px 16px;
    min-width: 100px;
    background: #786AFF;
    color: var(--white-color);
    outline: none;
    border: none;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    opacity: 0;
    transition: all 0.25s ease-in-out;
}

.journal img {
    height: 385px;
    width: 100%;
    object-fit: cover;
    transition: all 0.25s ease-in-out;
}

.journal .hover-box:hover img {
    filter: blur(5px);
}

.journal .hover-box:hover .btn2 {
    opacity: 1;
}

.journal .layer .btn2:hover {
    background: var(--footer-color);
}

.my-modal {
    font-size: 14px;
}

.my-modal .my-close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    opacity: 0.8;
}


/* ================================ 
Awards section 
=================================== */
.awards p {
    font-size: 14px;
}

/* ================================ 
Edu-blogs section 
=================================== */
.edublog .img-contain img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    transition: all 0.25s ease-in-out;
}

.edublog h4 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.edublog p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 14px;
}


/* ================================ 
            Footer Section 
=================================== */
footer {
    width: 100%;
    background: #000130;
    color: var(--white-color);
    font-size: 13px;
}
footer ul {
    list-style: none;
}
footer ul li a {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.25s;
    font-weight: 500;
    font-size: 14px;
    color: var(--white-color);
}

footer ul li a::before {
    content: "-";
    padding-right: 5px;
    font-size: 20px;
    color: var(--secondary-color);
}

footer ul li a:hover {
    padding-left: 10px;
    color: var(--secondary-color);
}

footer .copy {
    border-top: 1px solid #a6ffb9af;
    padding: 12px 0;
}

footer .copy p {
    color: var(--white-color);
    font-weight: 500;
}



.inner-banner {
    width: 100%;
    padding: 3rem 0;
    background:url(../images/main-bg.jpg) no-repeat center;
    background-size: cover;
}


.event-det h2 {
    font-weight: 500;
    font-size: 24px;
    line-height: 34px;
    color: var(--footer-color);
}  

.event-det .date-cat {
    color: var(--primary-color);
    font-weight: 500;
}

.left .latest {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: all 0.25s ease-in-out;
}

.left .latest i {
    font-size: 15px;
    color: #666;
}

.blog-list .publish {
    font-size: 14px;
}

.left .latest .lat-post {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
}

.left .latest .lat-post img {
    width: 100px;
    border-radius: 5px;

}

.left .latest .lat-post h6 {
    font-size: 14px;
    font-weight: 600;
    text-overflow: ellipsis;
    color: #000;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    transition: all 0.25s ease-in-out;
    margin-bottom: 5px;
}

.left .latest .lat-post:hover h6 {
    color: var(--primary-color);
}

.left .latest .lat-post p {
    color: var(--primary-color);
    font-size: 13px;
}