		
    	.container{
			position: relative;
			display: flex;
			justify-content: center;
			align-items: center;
			max-width: 1200px;
			flex-wrap: wrap;
			z-index: 1;
		}
		.content{
			padding: 20px;
			text-align: center;
			transform: translateY(0px);
		}
		.card:hover{
			transform: translateY(-25px);
			opacity: 1;
		}
		.content h2{
			position: absolute;
			top: -80px;
			right: 30px;
			font-size: 8em;
			color: rgba(0, 0, 0, 0.05);
			pointer-events: none;
		}
		.content h3{
			font-size: 1.8em;
			color: #000;
			z-index: 1;
		}
		.content p{
			font-size: 1em;
			color: #000;
			font-weight: 300;
		}
		.content .a1{
			position: relative;
			display: inline-block;
			padding: 8px;
			margin-top: 15px;
			background: #fff;
			color: #000;
			border-top-left-radius: 20px;
			border-bottom-left-radius: 20px;
			text-decoration: none;
			font-weight: 500;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			transition: 1s all ease;
		}
		.content .a1:hover{
			transform: translateY(10px);
		}
		.content .a2{
			position: relative;
			display: inline-block;
			padding: 8px;
			margin-top: 15px;
			background: #fff;
			color: #000;
			border-top-right-radius: 20px;
			border-bottom-right-radius: 20px;
			text-decoration: none;
			font-weight: 500;
			box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
			transition: 1s all ease;
		}
		.content .a2:hover{
			transform: translateX(10px);
		}
		.text-body{
			height: 100%;
		}
		.text-body::after{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(#fff,#000);
			clip-path: circle(10% at 15% 37%);
		}
		.text-body::before{
			content: '';
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			background: linear-gradient(#111,#eee);
			clip-path: circle(7% at 63% 70%);
		}
		.text-body2{
			border: 5px solid black;
			border-top-left-radius: 75px;
			border-top-right-radius: 75px;
			width: 100%;
			height: 100%;
			background: #848484;
			transition: 0.5s all ease;
		}
		.Darrow{
			width: 30px;
			height: 30px;
			border-top: 6px solid black;
			border-left: 6px solid black;
			transform: rotate(225deg);
			transition: 3s;
		}
		.Darrow:hover{
			transform: rotate(585deg);
		}
		.text-body2:hover{
			transform: translateY(-10px);
		}
		.main-body{
			width: 100%;
		}
		.info-box{
			padding: 10px;
			position: relative;
    		height: 100%;
    		border-radius: 15px;
    		border-top: 1px solid rgba(255, 255, 255, 0.5);
    		border-left: 1px solid rgba(255, 255, 255, 0.5);
    		box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    		background: #717171;
    		justify-content: center;
    		align-items: center;
    		backdrop-filter: blur(5px);
    		transition: 1s all ease-out;
		}
		.info-box:hover{
			transform: translateY(-20px);
		}
		.info-box h3{
			color: #ef9010;
			text-shadow: 1px 1px black;
		}
		.info-box p{
			color: #f3c10c;
		}
		.inner-box ol{
			color: #f3c10c;
		}
		.inner-box li{
			padding-top: 10px;
		}
		.sourceimg{
    		border-radius: 15px;
    		border-top: 1px solid rgba(255, 255, 255, 0.5);
    		border-left: 1px solid rgba(255, 255, 255, 0.5);
    		box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    		align-items: center;
    		backdrop-filter: blur(5px);
    		transition: 1s all ease-out;
		}
		.info-box:hover .sourceimg{
			transform: translateY(-40px);
		}
		.Lunatix{
			padding-bottom: 30px;
			border-bottom: 3px solid transparent;
			cursor: pointer;
			transition: 2s all ease-out;
		}
		.Lunatix:hover{
			color: orange;
			border-bottom: 3px solid orange;
			padding-bottom: 0;
		}
		.inner-box{
			font-size: 17px;
			transition: 1s all ease-out;
		}
		.info-box:hover .inner-box{
			transform: translateY(-20px);
		}
		.inner-box .btn-close{
			border-radius: 20px;
			transition: 2s all ease;
			background: black;
		}
		.inner-box .btn-close:hover{
			background: red;
		}
		.top10uni{
			transition: 1s all ease-out;
		}
		.top10uni:hover{
			transform: translateY(-50px);
		}
		
		.navbar{
			border-left: 5px solid orange;
			border-right: 5px solid orange;
			border-top-left-radius: 100px;
			border-bottom-right-radius: 100px;
			transition: 5s all ease-out;
			background-color: rgba(0, 0, 0, 0.7);
			font-family: 'poppins', sans-serif;
}

		.navbar:hover{
			border-right: 15px solid black;
			border-left: 15px solid black;
			background-color: rgba(0, 0, 0, 0.8);
}
.modal .modal-content {
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.3);
    overflow: hidden;
    backdrop-filter: blur(5px);
    color: white;
 }

 .modal .modal-content .mbtn{
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .modal .modal-content .mbtn:hover{
    background: orange;
    color: white; 
 }

 .modal .modal-content .mbtn:hover .btni{
    transform: translateX(5px);
 }

 .cc .mbtn{
    padding: 8px 20px;
    background: #fff;
    color: #000;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
 }

 .cc .mbtn:hover{
    background: orange;
    color: white; 
 }

 .cc .mbtn:hover .btni{
    transform: translateX(5px);
 }


    footer {
        width: 100%;
        bottom: 0;
        background: linear-gradient(to right, rgba(255, 166, 0, 0.73), rgba(79, 29, 2, 0.664));
        color: #fff;
        padding: 100px 0 30px;
        border-top-left-radius: 125px;
        font-size: 13px;
        line-height: 20px;
        font-family: 'poppins', sans-serif;
        backdrop-filter: blur(5px);
		font-family: 'poppins', sans-serif;
    }

    footer .row {
        width: 85%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: space-between;
    }

    footer .row .col-md-3 {
        padding: 10px;
        flex-basis: 25%;
    }

    .col-md-3:nth-child(2), .col-md-3:nth-child(3) {
        flex-basis: 15%;
    }

    footer .logo {
        width: 80px;
        margin-bottom: 30px;
    }

    footer .row .col-md-3 h5 {
        width: fit-content;
        margin-bottom: 40px;
        position: relative;
    }

    footer .row .col-md-3 .email-id {
        width: fit-content;
        border-bottom: 1px solid #ccc;
        margin: 20px 0;
    }

    footer .row .col-md-3 li {
        list-style: none;
        margin-bottom: 12px;
    }

    footer .row .col-md-3 li a {
       text-decoration: none;
       color: #fff;
       margin-right: 50px;
    }

    footer .row .col-md-3 form {
        padding-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #ccc;
        margin-bottom: 50px;
    }

    footer .row .col-md-3 form .far {
      font-size: 18px;
      margin-right: 10px;
    }

    footer .row .col-md-3 form input {
        width: 100%;
        background: transparent;
        color: #ccc;
        border: 0;
        outline: none;
    }

    footer .row .col-md-3 form button {
        background: transparent;
        border: 0;
        outline: none;
        cursor: pointer;
    }

    footer .row .col-md-3 form button .fas {
       font-size: 16px; 
       color: #ccc;
    }

    footer .row .col-md-3 .social-icons .fab {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        padding-top: 10px;
        text-align: center;
        font-size: 20px;
        color: #000;
        background: #fff;
        cursor: pointer;
    }


    .copyright {
        text-align: center;
    }

    footer hr {
        width: 90%;
        border: none;
        border-bottom: 3px solid #ccc;
        margin: 20px auto;
    }

    .underline {
        width: 100%;
        height: 5px;
        background: #767676;
        border-radius: 3px;
        position: absolute;
        top: 25px;
        left: 0;
        overflow: hidden;
    }

    .underline span {
        width: 15px;
        height: 100%;
        background: #fff;
        border-radius: 3px;
        position: absolute;
        top: 0;
        left: 10px;
        animation: moving 2s linear infinite;
    }

    @keyframes moving {
        0% {
            left: -20px;
        }
        100% {
            left: 100%;
        }
    }

		