@import url('../../../fonts.googleapis.com/css2b831.css?family=Poppins:wght@200;300;400;500;600;700&amp;display=swap');
********** Template CSS **********/
:root {
    --primary: #090136;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", sans-serif;
}

nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    background:#090136;
    outline: none;
    transition: .5s;
    background-color: rgba(7, 59, 19, 0.7);
    color: white;
    transition: background-color 0.3s ease;
    z-index: 10;
        /* Ensure navbar stays on top during scrolling */
   
}

.nav.active {
    background-color:rgb(4, 5, 30);
    /* Change background to transparent on scroll up */
}

nav .wrapper {
    position: relative;
    max-width: 1800px;
    padding: 0px 0px;
    height: 70px;
    line-height: 70px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    /* Text color */
}

.wrapper .logo a {
    color: #f2f2f2;
    font-size: 30px;
    font-weight: 600;
    text-decoration: none;
    padding-left: 20px;
}

.wrapper .nav-links {
    display: inline-flex;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    color:white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 9px 15px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
           /* Black background with 50% opacity */
    color:darksalmon;
    color:lawngreen;
}

.nav-links .mobile-item {
    display: none;
}

.nav-links .drop-menu {
    position: absolute;
    /*background: #3591ed;*/
    font-family: "Times New Roman", serif;
    text-align: left;
    color: white;
    font-weight: 600;
    font-size: 12px;
    border: #fff 2px solid;
    width: 300px;
    line-height: 35px;
    top: 85px;
    opacity: 0.3;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    background-color: rgba(7, 59, 19, 0.7);
    transition: background-color 0.3s ease;
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 5px;
    font-weight: 500;
    border-radius: 5px;
}

.mega-box {
    position: absolute;
    left: 15%;
    width: 70%;
    padding: 0 20px;
    top: 85px;
    opacity: 1;
    visibility: hidden;
    background-color: rgba(7, 59, 19, 0.7);
    color: white;
    transition: background-color 0.3s ease;  
}

.mega-box .content .row .mega-links li a:hover {
    /* Black background with 50% opacity */
    color:rgb(237, 174, 230);
}

.mega-box .content {
    /*background: #4b9ef0;*/
    font-family: "Times New Roman", serif;
    padding: 25px 20px;
    border: white 2px solid;
    display: flex;
   /* width: 100%; */
    justify-content: space-between;
    /*box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);*/
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 30px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content .row header {
    color: lawngreen;
    font-size: 20px;
    font-weight: 700;
    font-family: "Times New Roman", serif;
   /* border-bottom: white 1px solid;*/
    padding: 10px;
}

.content .row .mega-links {
    margin-left: -40px;
 /*  width: 460px; */
    /*border-left: 1px solid rgba(255, 255, 255, 0.09);*/
}

.row .mega-links li {
    padding: 0 20px;
    /*  width: 460px; */
}

.list1 li{
    padding: 0 20px;
    /*  width: 460px; */
    width:240px;
}

.list2 li {
    padding: 0 20px;
    /*  width: 460px; */
    width: 500px;
}
.row .mega-links li a {
    padding: 0px;
    padding: 0 20px;
    color: white;
    font-size: 14px;
    display: block;
}

.row .mega-links li a:hover {
    color: #f2f2f2;
}

.wrapper .btn {
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

@media screen and (max-width: 970px) {
    .wrapper .btn {
        display: block;
    }

    .wrapper .nav-links {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #242526;
        display: block;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
    }

    /* custom scroll bar */
    ::-webkit-scrollbar {
        width: 10px;
    }

    ::-webkit-scrollbar-track {
        background: #242526;
    }

    ::-webkit-scrollbar-thumb {
        background: #3A3B3C;
    }

    #menu-btn:checked~.nav-links {
        left: 0%;
    }

    #menu-btn:checked~.btn.menu-btn {
        display: none;
    }

    #close-btn:checked~.btn.menu-btn {
        display: block;
    }

    .nav-links li {
        margin: 15px 10px;
    }

    .nav-links li a {
        padding: 0 20px;
        display: block;
        font-size: 20px;
    }

    .nav-links .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }

    #showDrop:checked~.drop-menu,
    #showMega:checked~.mega-box {
        max-height: 100%;
    }

    .nav-links .desktop-item {
        display: none;
    }

    .nav-links .mobile-item {
        display: block;
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links .mobile-item:hover {
        background: #3A3B3C;
    }

    .drop-menu li {
        margin: 0;
    }

    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }

    .mega-box {
        position: static;
        top: 65px;
        opacity: 1;
        visibility: visible;
        padding: 0 20px;
        max-height: 0px;
        overflow: hidden;
        transition: all 0.3s ease;
    }

    .mega-box .content {
        box-shadow: none;
        flex-direction: column;
        padding: 20px 20px 0 20px;
    }

    .mega-box .content .row {
        width: 100%;
        margin-bottom: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .mega-box .content .row:nth-child(1),
    .mega-box .content .row:nth-child(2) {
        border-top: 0px;
    }

    .content .row .mega-links {
        border-left: 0px;
        padding-left: 15px;
    }

    .row .mega-links li {
        margin: 0;
    }

    .content .row header {
        font-size: 19px;
    }
}

nav input {
    display: none;
}

.body-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}

.body-text div {
    font-size: 45px;
    font-weight: 600;
}

/* Login Button Styles */
.login {
    display: inline-block;
    /* Display login button inline */
}

.login a {
    width: 80px;
    font-size: 14px;
    margin-right: 10px;
    opacity: 1;
    color:white;
    font-weight: 600;
    padding: 5px 10px;
    border: white 1px solid;
    border-radius: 5px;   
}

.login a:hover {
    background-color: blue;
}


.login a {
    width: 80px;
    font-size: 14px;
    margin-right: 10px;
    opacity: 1;
    color:white;
    font-weight: 600;
    padding: 5px 10px;
    border: white 1px solid;
    border-radius: 5px;   
}

.login a:hover {
    background-color: blue;
}

/*** Project ***/
/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 45px 0;
}

.fact .col-6 {
    display: flex;
    align-items: flex-start;
}

.fact .fact-icon {
    position: relative;
    margin: 7px 15px 0 15px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact .fact-icon [class^="flaticon-"]::before {
    margin: 0;
    font-size: 60px;
    line-height: 60px;
    background-image: linear-gradient(#ffffff, #fdbe33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.fact .fact-right .fact-icon [class^="flaticon-"]::before {
    background-image: linear-gradient(#ffffff, #030f27);
}

.fact .fact-left,
.fact .fact-right {
    padding-top: 60px;
    padding-bottom: 60px;
}

.fact .fact-text h2 {
    font-size: 35px;
    font-weight: 700;
}

.fact .fact-text p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.fact .fact-left {
    color:white;
    background: darkgreen;
    
}

.fact .fact-right {
    color:white;
    background:#090136
}

.fact .fact-left h2 {
    color: white;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 400px;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    /* Semi-transparent background */
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
}

.slideInUp .study_withus {
    position: absolute;
    bottom: 20px;
    left: 30px;
    background-color: brown;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid white;
    opacity: 0.7;
}

.fac-name {
background-color: brown;
background: #030f27;
border-radius: 10px;
border: 1px solid white;
opacity: 0.7;
}

/* Image styling */
.centered-image11 {
    padding: 20px;
    max-width: 100%;
    /* Fit to the width of the container */
    max-height: 100%;
       /* Fit to the height of the container */
    object-fit: contain;
    /* Preserve aspect ratio and fit inside container */
    border-radius: 50%;
}
.section-padding .raised-container {
    background-color: #fff;
    /* Background color */
    padding: 20px;
    /* Space inside the box */
    border-radius: 10px;
    /* Rounded corners */
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2),
        /* Bottom-right shadow */
        0 -5px 10px rgba(255, 255, 255, 0.5);
    /* Top-left light shadow */
    margin: 50px;
    /* Space around the box */
    text-align: center;
    /* Centering text */
}
.raised-container:hover {
    transform: translateY(-5px);
    /* Add a slight upward movement on hover */
}