<!DOCTYPE html>
<html lang="en">
<head>
<!-- meta tags -->
<meta charset="utf-8">
<meta name="keywords" content="ANITS, Anil neerukonda institute of technology " />
<meta name="description" content="Anil neerukonda institute of technology & sciences (ANITS)" />
<meta name="author" content="www.cdmedialabs.com" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Title -->
<title>ANITS - Anil Neerukonda Institute Of Technology & Sciences, Visakhapatnam </title>
<!-- favicon icon -->
<link rel="apple-touch-icon" sizes="180x180" href="/static/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon/favicon-16x16.png">
<!-- inject css start -->
<!--== bootstrap -->
<link href="/static/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
<!--== fonts -->
<link
href="https://fonts.googleapis.com/css2?family=Livvic:ital,wght@0,300;0,400;0,500;0,600;0,700;0,900;1,300;1,400;1,500;1,600;1,700;1,900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"
rel="stylesheet">
<!--== animate -->
<link href="/static/css/animate.css" rel="stylesheet" type="text/css" />
<!--== line-awesome -->
<link href="/static/css/line-awesome.min.css" rel="stylesheet" type="text/css" />
<!--== magnific-popup -->
<link href="/static/css/magnific-popup.css" rel="stylesheet" type="text/css" />
<!--== owl.carousel -->
<link href="/static/css/owl.carousel.css" rel="stylesheet" type="text/css" />
<!--== lightslider -->
<link href="/static/css/lightslider.min.css" rel="stylesheet" type="text/css" />
<!--== base -->
<link href="/static/css/base.css" rel="stylesheet" type="text/css" />
<!--== shortcodes -->
<link href="/static/css/shortcodes.css" rel="stylesheet" type="text/css" />
<!--== spacing -->
<link href="/static/css/spacing.css" rel="stylesheet" type="text/css" />
<!--== style -->
<link href="/static/css/style.css" rel="stylesheet" type="text/css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-KV1CZNW40R"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/css/lightbox.min.css" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.11.3/js/lightbox.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css" rel="stylesheet">
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.umd.js"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-KV1CZNW40R');
</script>
</head>
<!-- inject css end -->
<!-- Google tag (gtag.js) -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script>
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
<script>
AOS.init();
</script>
<style>
@media (min-width: 1025px) {
.sticky__btn {
position: fixed;
top: 22%;
right: 0;
transform-origin: bottom right;
z-index: 1;
}
}
[data-aos=fade-left] {
transform: translate3d(100px, 0, 0);
}
.counter-cards {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
align-items: center;
}
.counter-cards__item {
width: 250px;
height: 150px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-radius: 10px;
transition: transform 0.3s ease, background-color 0.5s ease;
position: relative;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.counter-cards__item--yellow {
background-color: #f8cd26;
}
.counter-cards__item--green {
background-color: #78C000;
}
.counter-cards__item--red {
background-color: #FF6F61;
}
/* Hover Animation */
.counter-cards__item:hover {
transform: scale(1.05);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.counter-cards__number {
font-size: 2rem;
font-weight: bold;
color: #fff;
animation: fadeInNumber 0.8s ease-in-out;
}
.counter-cards__item p {
font-size: 1rem;
color: #fff;
text-align: center;
margin: 0;
padding: 0 10px;
opacity: 0;
animation: fadeInText 1s ease-in-out forwards;
}
/* Keyframes for fade-in */
@keyframes fadeInNumber {
0% {
opacity: 0;
transform: translateY(-10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeInText {
0% {
opacity: 0;
transform: translateY(10px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
/* Container to hold the marquee */
.marquee-container {
overflow: hidden;
width: 100%;
background-color: #f9f9f9; /* Optional: Set background color */
padding: 20px 0;
}
/* Marquee wrapper */
.marquee {
display: flex;
gap: 20px; /* Spacing between images */
animation: marquee-animation 20s linear infinite; /* Smooth scrolling animation */
}
/* Individual marquee items */
.marquee-item img {
height: 100px; /* Smaller image size */
object-fit: contain;
padding: 10px;
border: 1px solid #ddd; /* Add border for style */
border-radius: 10px; /* Rounded corners */
background-color: #fff; /* Background for images */
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}
/* Keyframes for marquee effect */
@keyframes marquee-animation {
0% {
transform: translateX(0%);
}
100% {
transform: translateX(-50%);
}
}
.sticky__btn {
position: fixed;
top: 40%;
right: 0;
transform: translateY(-50%); /* Centers the button vertically */
z-index: 1000; /* Ensures the button is on top of other content */
display: flex;
flex-direction: column;
gap: 30px; /* Increased space between buttons */
padding: 15px 0; /* Padding for vertical spacing */
align-items: center; /* Align buttons to the center */
}
.sticky__btn ul {
list-style: none;
margin: 0;
padding: 0;
}
.sticky__btn ul li {
margin: 0;
padding: 0;
width: auto; /* Remove fixed width for content-based sizing */
}
.sticky__btn ul li a {
text-decoration: none;
color: white;
font-weight: bold;
font-size: 16px; /* Slightly increased font size */
display: block;
padding: 10px 30px; /* Increased padding for better clarity */
background-color: #FF4500; /* Background color for buttons */
border-radius: 25px; /* Rounded corners */
text-align: center;
transform: rotate(-90deg); /* Rotate the text */
transform-origin: right center; /* Rotation origin to the right edge */
white-space: nowrap; /* Prevent text from wrapping */
transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
box-sizing: border-box; /* Ensures padding and border are included in the element's total width/height */
margin-right: 24px;
}
.sticky__btn ul li a:hover {
background-color: #FF6347; /* Hover background color */
transform: rotate(-90deg) scale(1.05); /* Zoom effect on hover */
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Subtle shadow for hover effect */
}
/* AOS Animations */
[data-aos^="fade"][data-aos^="fade"].aos-animate {
opacity: 1;
transform: translateZ(0);
}
[data-aos][data-aos][data-aos-easing="ease"],
body[data-aos-easing="ease"] [data-aos] {
transition-timing-function: ease;
}
[data-aos][data-aos][data-aos-duration="800"],
body[data-aos-duration="800"] [data-aos] {
transition-duration: 0.8s;
}
[data-aos^="fade"][data-aos^="fade"] {
opacity: 0;
transition-property: opacity, transform;
}
.events-container {
position: relative;
padding: 10px;
border-radius: 12px;
background: white;
box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}
.events-title {
font-weight: 800;
color: #212529;
margin-bottom: 30px;
display: inline-block;
position: relative;
}
.events-title::after {
content: "";
position: absolute;
width: 70%;
height: 4px;
background: linear-gradient(135deg, #3a7bd5, #00d2ff);
bottom: -10px;
left: 0;
border-radius: 2px;
}
.event-item {
position: relative;
margin-bottom: 20px;
border-radius: 8px;
background-color: #fff;
transition: all 0.3s ease;
}
.event-date-badge {
position: absolute;
top: 20px;
right: 20px;
padding: 6px 12px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
color: white;
background: linear-gradient(135deg, #3a7bd5, #00d2ff);
}
.event-title {
font-weight: 700;
color: #343a40;
margin-bottom: 8px;
padding-right: 100px;
}
.event-subtitle {
color: #6c757d;
font-size: 0.95rem;
margin-bottom: 10px;
}
.event-desc {
color: #495057;
font-size: 0.9rem;
margin-bottom: 15px;
}
.view-all-btn {
display: block;
width: 100%;
padding: 12px;
text-align: center;
border-radius: 8px;
background: linear-gradient(135deg, #3a7bd5, #00d2ff);
color: white;
font-weight: 600;
border: none;
transition: all 0.3s ease;
text-decoration: none;
margin-top: 15px;
}
.view-all-btn:hover {
background: linear-gradient(135deg, #3a7bd5, #00d2ff);
box-shadow: 0 5px 15px rgba(255, 126, 95, 0.3);
color: white;
}
.event-tag {
display: inline-block;
padding: 4px 10px;
font-size: 0.7rem;
font-weight: 600;
background-color: #f8f9fa;
color: #6c757d;
border-radius: 4px;
margin-right: 5px;
}
.news-container {
max-width: 100%;
margin: 0 auto;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
background-color: #fff;
}
.news-header {
background: linear-gradient(135deg, #192f59, #3498db);
color: white;
padding: 32px 20px;
display: flex;
align-items: center;
margin-top: -49px;
justify-content: space-between;
}
.news-header h4 {
margin: 0;
font-weight: 600;
}
.marquee-container {
height: 150px;
overflow-y: hidden;
position: relative;
}
.marquee-container2 {
height: 450px;
overflow-y: hidden;
position: relative;
}
.marquee-content {
padding: 0;
animation: scroll-y 25s linear infinite;
position: relative;
}
.marquee-content:hover {
animation-play-state: paused;
}
@keyframes scroll-y {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-50%);
}
}
.news-item {
padding: 15px 20px;
border-bottom: 1px solid #e9ecef;
display: flex;
transition: all 0.3s ease;
}
.news-item:hover {
background-color: #f8f9fa;
}
.news-date {
min-width: 80px;
text-align: center;
background-color: #e9ecef;
border-radius: 4px;
padding: 5px;
font-size: 0.75rem;
font-weight: 600;
color: #495057;
height: fit-content;
display: flex;
flex-direction: column;
}
.news-date .day {
font-size: 1.2rem;
font-weight: 700;
color: #3a7bd5;
}
.news-content {
margin-left: 15px;
flex: 1;
}
.news-title {
font-weight: 600;
margin-bottom: 5px;
color: #343a40;
}
.news-desc {
font-size: 0.85rem;
color: #6c757d;
margin-bottom: 8px;
}
.news-tag {
display: inline-block;
padding: 2px 8px;
background-color: #e9ecef;
border-radius: 20px;
font-size: 0.7rem;
color: #495057;
margin-right: 5px;
}
.news-footer {
padding: 12px;
text-align: center;
background-color: #f8f9fa;
border-top: 1px solid #e9ecef;
}
.news-footer a {
color: #3a7bd5;
text-decoration: none;
font-weight: 600;
font-size: 0.9rem;
}
.news-indicator {
width: 8px;
height: 8px;
border-radius: 50%;
display: inline-block;
margin-right: 8px;
}
.indicator-new {
background-color: #38b000;
box-shadow: 0 0 0 3px rgba(56, 176, 0, 0.2);
}
.indicator-important {
background-color: #e63946;
box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}
.indicator-update {
background-color: #ff9e00;
box-shadow: 0 0 0 3px rgba(255, 158, 0, 0.2);
}
/* Add a fading effect at top and bottom */
.marquee-container::before,
.marquee-container::after {
content: "";
position: absolute;
z-index: 2;
left: 0;
right: 0;
height: 30px;
pointer-events: none;
}
.marquee-container::before {
top: 0;
background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.marquee-container::after {
bottom: 0;
background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}
/* Controls */
.news-controls {
display: flex;
gap: 10px;
}
.control-btn {
background: rgba(255, 255, 255, 0.2);
border: none;
width: 30px;
height: 30px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: white;
cursor: pointer;
transition: all 0.2s ease;
}
.control-btn:hover {
background: rgba(255, 255, 255, 0.4);
}
.section-title {
position: relative;
margin-bottom: 2rem;
}
.section-title h2 {
font-weight: 700;
color: var(--secondary-color);
position: relative;
display: inline-block;
padding-bottom: 0.5rem;
}
.flip_header {
font-weight: 700;
color: white;
font-size: 1.8rem;
position: relative;
display: inline-block;
padding-bottom: 8px;
}
.flip_header::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
height: 3px;
width: 100%;
background-color: #000000; /* Nice teal or any accent color */
border-radius: 2px;
transition: width 0.3s ease-in-out;
}
.section-title h2::after {
content: '';
position: absolute;
left: 0;
bottom: 0;
width: 70%;
height: 3px;
background: var(--primary-color);
transition: width var(--transition-speed);
}
.section-title h2:hover::after {
width: 100%;
}
.btn-primary:hover {
background-color: var(--dark-color);
border-color: var(--dark-color);
transform: translateY(-3px);
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.news-container {
padding: 3rem 0;
}
.news-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.news-thumb {
position: relative;
overflow: hidden;
height: 250px;
}
.news-thumb img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform var(--transition-speed);
}
.news-card:hover .news-thumb img {
transform: scale(1.05);
}
.news-category {
position: absolute;
top: 15px;
left: 15px;
background-color: var(--primary-color);
color: white;
padding: 5px 15px;
border-radius: 20px;
font-size: 0.8rem;
font-weight: 600;
z-index: 1;
}
.news-body {
padding: 1.5rem;
}
.news-title {
font-weight: 700;
margin-bottom: 1rem;
color: var(--dark-color);
}
.news-date {
color: #7f8c8d;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.news-text {
color: #34495e;
margin-bottom: 1rem;
}
.news-link {
color: var(--primary-color);
font-weight: 600;
display: inline-flex;
align-items: center;
text-decoration: none;
transition: all var(--transition-speed);
}
.news-link:hover {
color: var(--dark-color);
}
.news-link i {
margin-left: 0.5rem;
transition: transform var(--transition-speed);
}
.news-link:hover i {
transform: translateX(5px);
}
/* Fade In Animation */
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-in {
animation: fadeIn 0.5s ease forwards;
}
/* Responsive Adjustments */
@media (max-width: 767px) {
.section-title h2 {
font-size: 1.5rem;
}
.news-card {
margin-bottom: 2rem;
}
}
.card {
min-height: 595px;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
transform: translateY(0);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.card-header {
background: linear-gradient(135deg, #192f59, #3498db);
color: white;
padding: 20px;
position: relative;
overflow: hidden;
}
.card-header h2 {
position: relative;
z-index: 1;
font-size: 24px;
margin-bottom: 5px;
font-weight: 600;
animation: fadeIn 0.8s ease-in-out forwards;
}
.bubble {
position: absolute;
border-radius: 50%;
background: rgba(255, 255, 255, 0.1);
animation: bubbleFloat 8s infinite linear;
}
.bubble:nth-child(1) {
width: 60px;
height: 60px;
top: -20px;
left: 10%;
animation-delay: 0s;
animation-duration: 10s;
}
.bubble:nth-child(2) {
width: 80px;
height: 80px;
top: 30px;
right: -30px;
animation-delay: 1s;
animation-duration: 12s;
}
.bubble:nth-child(3) {
width: 40px;
height: 40px;
bottom: -10px;
left: 30%;
animation-delay: 2s;
animation-duration: 9s;
}
.card-content {
height: 480px;
overflow-y: auto;
padding: 0;
background: white;
}
.bulletin-list {
list-style: none;
padding: 0;
}
.bulletin-item {
padding: 15px 20px;
border-bottom: 1px solid #eee;
transition: background-color 0.3s ease;
animation: slideIn 0.5s ease-out forwards;
opacity: 0;
transform: translateY(20px);
}
.bulletin-item:hover {
background-color: #f8f9fa;
}
.bulletin-item a {
display: flex;
align-items: center;
color: #1030d4;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.bulletin-item a:hover {
color: #192f59;
}
.bulletin-item .dot {
color: #3498db;
margin-right: 10px;
font-size: 12px;
animation: pulse 2s infinite;
}
.bulletin-item:nth-child(even) {
animation-delay: 0.1s;
}
.bulletin-item:nth-child(odd) {
animation-delay: 0.2s;
}
/* Custom scrollbar */
.card-content::-webkit-scrollbar {
width: 8px;
}
.card-content::-webkit-scrollbar-track {
background: #f1f1f1;
}
.card-content::-webkit-scrollbar-thumb {
background: #c1d1e3;
border-radius: 4px;
}
.card-content::-webkit-scrollbar-thumb:hover {
background: #3498db;
}
@keyframes slideIn {
0% {
opacity: 0;
transform: translateY(20px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
@keyframes bubbleFloat {
0% {
transform: translateY(0) rotate(0deg);
}
50% {
transform: translateY(-20px) rotate(180deg);
}
100% {
transform: translateY(0) rotate(360deg);
}
}
@keyframes pulse {
0% {
transform: scale(1);
opacity: 0.8;
}
50% {
transform: scale(1.2);
opacity: 1;
}
100% {
transform: scale(1);
opacity: 0.8;
}
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', sans-serif;
}
body {
background-color: #f8f9fa;
color: #333;
line-height: 1.6;
}
.section {
padding: 80px 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
/* Section header */
.section-header {
text-align: center;
margin-bottom: 60px;
}
.section-title {
font-size: 2.5rem;
font-weight: 700;
color: #2d3748;
margin-bottom: 15px;
position: relative;
display: inline-block;
}
.section-title::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 70px;
height: 4px;
background: linear-gradient(90deg, #4527a0, #7b1fa2);
border-radius: 2px;
}
.section-subtitle {
font-size: 1.1rem;
color: #718096;
max-width: 700px;
margin: 0 auto;
margin-top: 25px;
}
/* Top recruiters grid */
/* Recruiters Grid *//* Recruiters Grid */
.recruiters-grid {
display: flex;
flex-direction: row;
justify-content: space-between;
gap: 15px;
max-width: 1300px;
margin: 0 auto;
}
.recruiter-card {
perspective: 1000px;
height: 280px;
width: 20%;
cursor: pointer;
}
/* Responsive layout */
@media (max-width: 992px) {
.recruiters-grid {
flex-wrap: wrap;
justify-content: center;
gap: 20px;
}
.recruiter-card {
width: 45%;
margin-bottom: 20px;
}
}
@media (max-width: 600px) {
.recruiters-grid {
flex-direction: column;
align-items: center;
}
.recruiter-card {
width: 85%;
margin-bottom: 25px;
}
}
.card-inner {
position: relative;
width: 100%;
height: 100%;
transition: transform 0.8s;
transform-style: preserve-3d;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-radius: 8px;
}
.card-front, .card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
border-radius: 8px;
padding: 16px;
box-sizing: border-box;
}
.card-front {
background-color: white;
}
.card-back {
background: linear-gradient(135deg, #192f59, #3498db);
color: white;
transform: rotateY(180deg);
}
.flipped .card-inner {
transform: rotateY(180deg);
}
.recruiter-logo {
max-width: 80%;
max-height: 100px;
margin-bottom: 16px;
}
.recruiter-name {
font-size: 18px;
font-weight: bold;
margin-top: 10px;
text-align: center;
}
.package-info {
width: 100%;
}
.package-info h4.flip_header {
text-align: center;
margin-bottom: 15px;
font-size: 20px;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 1px;
color: #ffffff;
text-shadow: 0 1px 2px rgba(0,0,0,0.2);
position: relative;
}
.package-info h4.flip_header:after {
content: '';
display: block;
width: 50px;
height: 2px;
background: rgba(255,255,255,0.6);
margin: 8px auto 0;
}
.package-info ul {
list-style: none;
padding: 0;
margin: 0;
}
.package-info li {
padding: 6px 0;
text-align: center;
font-size: 16px;
}
/* Controls */
.controls {
display: flex;
justify-content: center;
margin: 20px 0;
}
.control-btn {
padding: 8px 16px;
margin: 0 8px;
border: none;
background-color: #4a69bd;
color: white;
border-radius: 4px;
cursor: pointer;
font-size: 14px;
}
.control-btn:hover {
background-color: #3e5ca1;
}
/* Carousel section */
.featured-recruiters {
margin-top: 60px;
}
.featured-title {
text-align: center;
margin-bottom: 30px;
font-size: 1.5rem;
color: #4a5568;
position: relative;
padding-bottom: 15px;
}
.featured-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background: linear-gradient(90deg, #4527a0, #7b1fa2);
border-radius: 2px;
}
@keyframes scrollX {
0% {
transform: translateX(0);
}
100% {
transform: translateX(calc(-250px * 6)); /* Half the total width */
}
}
/* General Styles */
.stats-container {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
gap: 20px;
padding: 40px 20px;
background-color: #f9fafb;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.stat-item {
text-align: center;
padding: 20px;
background-color: #ffffff;
border-radius: 10px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
flex: 1 1 200px; /* Flexible sizing for responsiveness */
max-width: 250px;
}
.stat-item:hover {
transform: translateY(-10px);
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}
.stat-number {
font-size: 2.5rem;
font-weight: 700;
color: #1e3a8a; /* Dark blue for emphasis */
margin-bottom: 10px;
transition: color 0.3s ease;
}
.stat-item:hover .stat-number {
color: #3b82f6; /* Light blue on hover */
}
.stat-text {
font-size: 1.1rem;
color: #4b5563; /* Gray for subtlety */
font-weight: 500;
margin: 0;
}
/* Responsive Design */
@media (max-width: 768px) {
.stats-container {
flex-direction: column;
gap: 15px;
}
.stat-item {
max-width: 100%;
width: 80%;
}
}
/* Responsive styles */
@media (max-width: 768px) {
.section {
padding: 60px 0;
}
.section-title {
font-size: 2rem;
}
.recruiters-grid {
grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
gap: 20px;
}
.stat-item {
min-width: 150px;
}
}
@media (max-width: 480px) {
.recruiters-grid {
grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
}
.carousel-item {
flex: 0 0 200px;
}
.stat-number {
font-size: 2.5rem;
}
}
.card-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
justify-content: center;
}
.card {
width: 300px;
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
transition: transform 0.3s ease-in-out;
}
.card:hover {
transform: scale(1.05);
}
.card-header {
background: linear-gradient(135deg, #192f59, #3498db);
color: white;
padding: 20px;
font-size: 18px;
text-align: center;
}
.card-content {
padding: 20px;
text-align: center;
}
.counter {
font-size: 2rem;
font-weight: bold;
color: #333;
}
.event-card, .news-card {
background: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
padding: 20px;
margin-bottom: 20px;
transition: transform 0.3s;
}
.event-card:hover, .news-card:hover {
transform: translateY(-5px);
}
@keyframes float {
0%, 100% {
transform: translate(0, 0);
}
50% {
transform: translate(20px, 20px);
}
}
:root {
--primary-color: #3498db;
--secondary-color: #2c3e50;
--hover-color: #2980b9;
}
.section-title {
color: var(--secondary-color);
text-align: center;
margin-bottom: 2rem;
font-weight: 600;
position: relative;
padding-bottom: 15px;
}
.section-title:after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: var(--primary-color);
}
.vital-links-carousel {
padding: 2rem 0 4rem;
position: relative;
}
.carousel-container {
position: relative;
max-width: 1200px;
margin: 0 auto;
}
.carousel-item {
transition: transform 0.6s ease-in-out;
}
.link-card {
background-color: white;
border-radius: 12px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
margin: 10px;
height: 150px;
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
.link-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
border-bottom: 3px solid var(--primary-color);
}
.link-card-inner {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
padding: 1.25rem;
width: 100%;
height: 100%;
}
.link-icon {
width: 60px;
height: 60px;
background-color: rgba(52, 152, 219, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
color: var(--primary-color);
transition: all 0.3s ease;
}
.link-card:hover .link-icon {
background-color: var(--primary-color);
color: white;
transform: scale(1.1);
}
.link-title {
font-weight: 600;
color: var(--secondary-color);
font-size: 1rem;
transition: color 0.3s ease;
margin: 0;
}
.link-card:hover .link-title {
color: var(--primary-color);
}
.carousel-control-prev,
.carousel-control-next {
width: 50px;
height: 50px;
background-color: var(--primary-color);
border-radius: 50%;
top: 50%;
transform: translateY(-50%);
opacity: 0.8;
}
.carousel-control-prev {
left: -25px;
}
.carousel-control-next {
right: -25px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
opacity: 1;
background-color: var(--hover-color);
}
.carousel-indicators {
bottom: -40px;
}
.carousel-indicators [data-bs-target] {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ccc;
margin: 0 5px;
border: none;
}
.carousel-indicators .active {
background-color: var(--primary-color);
}
.card-link {
text-decoration: none;
color: inherit;
display: block;
height: 100%;
width: 100%;
}
@media (max-width: 768px) {
.carousel-control-prev,
.carousel-control-next {
display: none;
}
.link-card {
height: 130px;
}
.link-icon {
width: 50px;
height: 50px;
}
}
.featured-recruiters {
margin-top: 60px;
}
.featured-title {
text-align: center;
margin-bottom: 30px;
font-size: 1.5rem;
color: #4a5568;
position: relative;
padding-bottom: 15px;
}
.featured-title::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background: linear-gradient(90deg, #4527a0, #7b1fa2);
border-radius: 2px;
}
.accreditation-section {
background: linear-gradient(135deg, #192f59, #3498db);
color: white;
padding: 4rem 0;
}
.accreditation-title {
font-size: 2.5rem;
font-weight: bold;
margin-bottom: 1rem;
}
.accreditation-description {
font-size: 1rem;
margin-bottom: 2rem;
}
.accreditation-cards {
display: flex;
justify-content: center;
gap: 1.5rem;
}
.accreditation-card {
background-color: white;
border-radius: 10px;
padding: 2rem;
text-align: center;
width: 250px;
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.accreditation-card img {
max-width: 150px;
margin-bottom: 1rem;
}
#demo2 .carousel-control-prev,
#demo2 .carousel-control-next {
display: none;
}
.adj_section {
margin-top: -50px !important;
}
@media screen and (max-width: 989px) {
.adj_section {
margin-top: -61px !important;
}
}
/* Default carousel size */
/* On small screens (less than 768px), increase the height */
@media screen and (max-width: 767px) {
#demo2 .carousel-inner img {
/* or any value you prefer */
width: 100%;
object-fit: cover;
}
}
.scrollable-bulletin {
scrollbar-width: thin;
scrollbar-color: #ccc transparent;
}
.scrollable-bulletin::-webkit-scrollbar {
width: 6px;
}
.scrollable-bulletin::-webkit-scrollbar-thumb {
background-color: #ccc;
border-radius: 4px;
}
.testimonial-card {
border-radius: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
overflow: hidden;
height: 100%;
}
.testimonial-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.avatar-container {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
margin: 0 auto;
border: 3px solid #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.testimonial-header {
background: linear-gradient(135deg, #3498db, #1abc9c);
color: white;
padding: 20px 0 60px 0;
border-radius: 15px 15px 0 0;
position: relative;
}
.testimonial-body {
padding: 60px 20px 20px 20px;
position: relative;
background-color: #fff;
}
.avatar-container {
position: absolute;
top: -50px;
left: 50%;
transform: translateX(-50%);
}
.stars {
color: #FFD700;
margin: 10px 0;
}
.testimonial-text {
font-style: italic;
color: #555;
margin-bottom: 15px;
}
.testimonial-name {
font-weight: bold;
margin-bottom: 0;
}
.section-title {
position: relative;
margin-bottom: 50px;
text-align: center;
}
.section-title:after {
content: '';
position: absolute;
bottom: -15px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background: linear-gradient(to right, #3498db, #1abc9c);
}
.testimonial-section {
background-color: #f9f9f9;
padding: 60px 0;
}
.modal-backdrop {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
}
.modal-content {
background: linear-gradient(145deg, #ffffff, #f8f9ff);
border: none;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}
.modal-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
background-size: 300% 300%;
animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.modal-header {
border-bottom: none;
padding: 2rem 2rem 1rem;
position: relative;
}
.modal-title {
font-weight: 700;
font-size: 1.8rem;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0;
animation: titlePulse 2s ease-in-out infinite alternate;
}
@keyframes titlePulse {
from { transform: scale(1); }
to { transform: scale(1.05); }
}
.btn-close {
background: linear-gradient(45deg, #ff6b6b, #ee5a24);
border-radius: 50%;
width: 40px;
height: 40px;
opacity: 1;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.btn-close:hover {
transform: rotate(90deg) scale(1.1);
background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}
.modal-body {
padding: 1rem 2rem 2rem;
}
.video-container {
position: relative;
margin-bottom: 2rem;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
animation: videoFloat 6s ease-in-out infinite;
}
@keyframes videoFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.video-container iframe {
width: 100%;
height: 315px;
border: none;
}
.form-container {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.form-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
animation: shimmer 3s infinite;
pointer-events: none;
}
@keyframes shimmer {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.form-title {
text-align: center;
margin-bottom: 1.5rem;
font-weight: 600;
color: #333;
position: relative;
}
.form-group {
margin-bottom: 1.5rem;
position: relative;
}
.form-control {
border: 2px solid transparent;
border-radius: 15px;
padding: 12px 20px 12px 50px;
font-size: 1rem;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.form-control:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
background: rgba(255, 255, 255, 1);
transform: translateY(-2px);
}
.input-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: #667eea;
font-size: 1.1rem;
z-index: 2;
transition: all 0.3s ease;
}
.form-group:focus-within .input-icon {
color: #764ba2;
transform: translateY(-50%) scale(1.1);
}
.download-btn {
background: linear-gradient(45deg, #667eea, #764ba2);
border: none;
border-radius: 50px;
padding: 15px 40px;
font-weight: 600;
font-size: 1.1rem;
color: white;
width: 100%;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.download-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.download-btn:hover::before {
left: 100%;
}
.download-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
background: linear-gradient(45deg, #764ba2, #667eea);
}
.download-btn:active {
transform: translateY(-1px);
}
.floating-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.floating-circle {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
animation: float 6s ease-in-out infinite;
}
.floating-circle:nth-child(1) {
width: 60px;
height: 60px;
top: 20%;
left: 10%;
animation-delay: 0s;
}
.floating-circle:nth-child(2) {
width: 40px;
height: 40px;
top: 60%;
right: 15%;
animation-delay: 2s;
}
.floating-circle:nth-child(3) {
width: 30px;
height: 30px;
bottom: 30%;
left: 20%;
animation-delay: 4s;
}
@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg);
opacity: 0.7;
}
50% {
transform: translateY(-20px) rotate(180deg);
opacity: 1;
}
}
.modal.show .modal-dialog {
animation: modalSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalSlideIn {
from {
opacity: 0;
transform: scale(0.7) translateY(-50px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.form-control.animate {
animation: inputPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes inputPop {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.success-message {
display: none;
text-align: center;
padding: 1rem;
background: linear-gradient(45deg, #4ecdc4, #44a08d);
color: white;
border-radius: 15px;
margin-top: 1rem;
animation: successSlide 0.5s ease;
}
@keyframes successSlide {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.modal-dialog {
margin: 1rem;
}
.modal-title {
font-size: 1.5rem;
}
.video-container iframe {
height: 250px;
}
.form-container {
padding: 1.5rem;
}
}
</style>
<body>
<!--<div data-aos="fade-left" class="sticky__btn aos-init aos-animate">-->
<!-- <ul>-->
<!-- <li><a href="https://onlinesystem.anits.edu.in/" target="_blank">Admissions Open 2025|Apply</a></li>-->
<!-- </ul>-->
<!--</div>-->
<!-- page wrapper start -->
<div class="page-wrapper">
<!-- preloader start -->
<div id="ht-preloader">
<div class="clear-loader d-flex align-items-center justify-content-center">
<div class="loader">
<img src="/static/images/logo.png" class="img-fluid" style="width: 80px;" /> <br /> <br />
<p style="color: #fff;">Loading... </p>
</div>
</div>
</div>
<header id="site-header" class="header">
<div class="topmost_header py-1">
<div class="container-fluid">
<div class="d-flex flex-column flex-sm-row flex-wrap justify-content-center align-items-center text-center gap-2" style="line-height: 1.2;">
<!-- Contact Info -->
<div class="top_call m-0 p-0" style="line-height: 1.5;">
<span>College Code:</span> <b>ANIL</b>  
<span>Email:</span> principal@anits.edu.in  
8712005999, 8712008222, 9154220250 <small>(Admissions)</small>
</div>
<!-- Menu Links -->
<ul class="menu-topmenu list-unstyled d-flex flex-row gap-2 mb-0" style="line-height: 1;">
<li><a title="NBA" href="/nba">NBA</a></li>
<li><a title="NAAC" href="/naac">NAAC</a></li>
<li><a title="IIC" href="/iic">IIC</a></li>
<li><a title="E-Learning" href="/elearning">E-Learning</a></li>
</ul>
</div>
</div>
</div>
<div id="header-wrap">
<div class="topHeader py-2">
<div class="container">
<div class="row align-items-center">
<!-- Logo - smaller on mobile, but visible -->
<div class="col-3 col-md-2 col-lg-1">
<a href="/">
<img id="logo-img" class="img-fluid" src="/static/images/logo_header1.png" alt="ANITS Logo" style="max-width: 64px;">
</a>
</div>
<!-- Institute name - responsive text size -->
<div class="col-9 col-md-6 col-lg-7">
<a href="/" class="text-decoration-none">
<div class="logo-text fs-6 fs-md-5 fs-lg-4 fw-bold">ANIL NEERUKONDA INSTITUTE OF TECHNOLOGY & SCIENCES</div>
</a>
</div>
<!-- Accreditation logos - hide on very small screens -->
<div class="col-md-4 col-lg-4 d-none d-md-block">
<div class="d-flex justify-content-end gap-2">
<img class="img-fluid" src="/static/images/auto.webp" alt="Autonomous Status" style="max-height: 70px;">
<img class="img-fluid" src="/static/images/naac.png" alt="NAAC Accreditation" style="max-height: 70px;">
<!--<img class="img-fluid" src="/static/images/admnopen2.png" alt="Admissions open" style="max-height: 70px;">-->
<a href="#" data-bs-toggle="modal" data-bs-target="#videoModal" title="Get Brochure">
<img src="/static/images/admnopen2.png" alt="Download Brochure" class="flicker" style="max-height: 70px;">
</a>
<a href="/static/images/meritranks.pdf" target="_blank" >
<img src="/static/images/merrit1.png" alt="Download Brochure" style="max-height: 80px;" >
</a>
</div>
</div>
</div>
</div>
</div>
<!-- Add these CSS improvements to your stylesheet -->
<style>
@media (max-width: 767.98px) {
.logo-text {
font-size: 14px !important;
line-height: 1.2;
}
#logo-img {
max-width: 70px;
}
}
@media (min-width: 768px) and (max-width: 991.98px) {
.logo-text {
font-size: 16px !important;
}
}
@media (min-width: 992px) {
.logo-text {
font-size: 18px !important;
}
}
@keyframes flicker {
0%, 100% { opacity: 1; }
50% { opacity: 0.4; }
}
.flicker {
animation: flicker 1s infinite;
}
</style>
<div class="menuheader">
<div class="container ">
<div class="row">
<div class="col-sm-12">
<nav class="navbar navbar-expand-lg">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation"> <span></span>
<span></span>
<span></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mx-auto position-relative">
<!-- Home -->
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#"
data-bs-toggle="dropdown">About Us</a>
<ul class="dropdown-menu">
<li><a href="/anits_glance">Anits at a glance</a></li>
<!--<li><a href="/about_vision_mission">vision & mission</a></li>-->
<li><a href="/about_principal">Principal</a></li>
<li><a href="/directorRD">Director R & D</a></li>
<li><a href="/our_team">Our team</a></li>
<!--<li><a href="/our_society">Our society</a></li>-->
<!--<li><a href="/governing_body">Governing body</a></li>-->
<!--<li><a href="/finance">Finance Committee</a></li>-->
<li><a href="/committees">Committees</a></li>
<li><a href="/academic_council">Academic council</a></li>
<li><a href="/organization_chart">Organization chart</a></li>
</ul>
</li>
<li class="nav-item "> <a class="nav-link " href="/admissions">Admissions</a>
</li>
<li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#"
data-bs-toggle="dropdown">Academics</a>
<ul class="dropdown-menu">
<li><a href="/academiccalendar">Academic Calendar</a></li>
<li><a href="/timetable">Time Table</a></li>
<li><a href="/syllabusacademics"> Syllabus</a></li>
<li><a href="/elearning">E-Learning</a></li>
<li><a href="/exam">Exam Section</a></li>
<li><a href="/static/images/ISOcertficate.pdf">ISO Certificate</a></li>
<li><a href="/apssdc">APSSDC</a></li>
<li><a href="/swayam">SWAYAM-NPTEL</a></li>
<!--<li><a href="/studentclubs">Student Clubs</a></li>-->
<li><a href="/professionalbodies">Professional Bodies</a></li>
<li><a href="/NSS">NSS</a></li>
<li><a href="/NCC">NCC</a></li>
<!--<li><a href="/finance">Prospectus</a></li>-->
<!--<li><a href="/finance">Mandatory Disclosure</a></li>-->
</ul>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" data-bs-toggle="dropdown">Departments</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/department/chemical" >Chemical Engineering</a></li>
<li><a class="dropdown-item" href="/department/civil">Civil Engineering</a></li>
<li><a class="dropdown-item" href="/department/cse">Computer Science and Engineering</a></li>
<li><a class="dropdown-item" href="/department/cse-ai-ml">Computer Science and Engineering<br> (AI&ML)</a></li>
<li><a class="dropdown-item" href="/department/cse-ds" >Computer Science and Engineering<br> (DS)</a></li>
<li><a class="dropdown-item" href="/department/eee" >Electrical & Electronics Eng.</a></li>
<li><a class="dropdown-item" href="/department/ece" >Electronics & Communication Eng.</a></li>
<li><a class="dropdown-item" href="/department/it">Information Technology</a></li>
<li><a class="dropdown-item" href="/department/mech">Mechanical Engineering</a></li>
<li><a class="dropdown-item" href="/department/mba">MBA (Hospital Administration)</a></li>
<li class="dropdown-submenu">
<a class="dropdown-item dropdown-toggle" href="#" >Freshman Engineering Department</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="/fed" >FED-HOD</a></li>
<li><a class="dropdown-item" href="/department/chemistry" >Chemistry</a></li>
<li><a class="dropdown-item" href="/department/english" >English and Humanities</a></li>
<li><a class="dropdown-item" href="/department/maths" >Mathematics</a></li>
<li><a class="dropdown-item" href="/department/physics" >Physics</a></li>
</ul>
</li>
</ul>
</li>
<li class="nav-item "> <a class="nav-link " href="/department/rdc">R&D</a>
<ul class="dropdown-menu">
<li class="nav-item "> <a class="nav-link " href="/directorRD">R&D</a></li>
</ul>
</li>
<li class="nav-item "> <a class="nav-link " href="/iqac">IQAC</a>
</li>
<li class="nav-item "> <a class="nav-link " href="/policies">Policies </a>
</li>
<li class="nav-item "> <a class="nav-link " href="/facilities">Facilities </a></li>
<li class="nav-item "> <a class="nav-link " href="/centrallibrary">Library</a></li>
<li class="nav-item "> <a class="nav-link " href="/training_placements">Training&Placements </a></li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</div>
</div>
</header>
<!--header end-->
<!--hero section start-->
<section>
<section class="banner p-0 pos-r adj_section" >
<div id="demo2" class="carousel slide banner" data-bs-ride="carousel" data-bs-interval="3000" data-bs-pause="false">
<!-- Indicators/dots -->
<div class="carousel-indicators">
<button type="button" data-bs-target="#demo2" data-bs-slide-to="0" class="active"></button>
<button type="button" data-bs-target="#demo2" data-bs-slide-to="1" class=""></button>
<button type="button" data-bs-target="#demo2" data-bs-slide-to="2" class=""></button>
<button type="button" data-bs-target="#demo2" data-bs-slide-to="3" class=""></button>
<button type="button" data-bs-target="#demo2" data-bs-slide-to="4" class=""></button>
</div>
<!-- The slideshow/carousel -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="/media/jrcollege/slides/4_VrB8lcO.5_-_6.75_LPA_2.png" style="background-size: cover;width: 100%">
</div>
<div class="carousel-item ">
<img src="/media/jrcollege/slides/4_NlS18ac.5_-_6.75_LPA.png" style="background-size: cover;width: 100%">
</div>
<div class="carousel-item ">
<img src="/media/jrcollege/slides/4_eAerJaO.5_-_6.75_LPA_3.png" style="background-size: cover;width: 100%">
</div>
<div class="carousel-item ">
<img src="/media/jrcollege/slides/2_DyuBQWE_1_1_1_myjt4bG.png" style="background-size: cover;width: 100%">
</div>
<div class="carousel-item ">
<img src="/media/jrcollege/slides/slide2_2_YZSPSoq_DrN5pxS.png" style="background-size: cover;width: 100%">
</div>
</div>
<!-- Left and right controls/icons -->
<button class="carousel-control-prev" type="button" data-bs-target="#demo2" data-bs-slide="prev">
<span class="carousel-control-prev-icon"></span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#demo2" data-bs-slide="next">
<span class="carousel-control-next-icon"></span>
</button>
</div>
</section>
<!--hero section end-->
<!--body content start-->
<div class="page-content">
<!--feature start-->
<section>
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-lg-6 col-12 pe-md-6">
<iframe
width="560"
height="315"
src="https://www.youtube.com/embed/LGzFBhVqQ20?si=wgBmE8uV9cryJRHK&autoplay=1&mute=1&loop=1&playlist=LGzFBhVqQ20"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="col-lg-6 col-12 mt-6 mt-lg-0">
<div>
<h2 class="events-title">Welcome to ANITS</h2>
<p class="mb-0">Anil Neerukonda Institute of Technology & Sciences (ANITS), Visakhapatnam is
owned by Megha Engineering and Infrastructure Limited (MEIL) which is one of the top
infrastructure and manufacturing company in India with headquarters at Hyderabad. The
institute was established in the academic year 2001-02 by Anil Neerukonda Educational
Society (ANES) which was founded by Dr. N.B.R. Prasad, an NRI Philanthropist from the
USA,
with industrialists and eminent educationists in memory of Late Anil Neerukonda, S/o.
Dr.
N.B.R. Prasad.
</p> <br/>
</div>
</a>
</div>
</div>
</div>
</section>
<section data-aos="fade-up" data-aos-duration="800" class="aos-init aos-animate">
<div class="container">
<div style="display: flex; justify-content: center;">
<h2 style="text-align: center; padding-right: 20px;" class="events-title">ANITS at a Glance</h2>
</div>
<div class="counter-cards">
<div class="counter-cards__item counter-cards__item--yellow">
<h3 class="counter-cards__number">6.5k+</h3>
<p></p>
<p>Active students</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--green">
<h3 class="counter-cards__number">90k+</h3>
<p></p>
<p>Alumni across 105 countries</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--red">
<h3 class="counter-cards__number">1600+</h3>
<p></p>
<p>Teaching staff</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--yellow">
<h3 class="counter-cards__number">75% +</h3>
<p></p>
<p> Faculty with PhDs in most disciplines</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--green">
<h3 class="counter-cards__number">18k+</h3>
<p></p>
<p>Publications</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--red">
<h3 class="counter-cards__number">82</h3>
<p></p>
<p>H-Index</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--yellow">
<h3 class="counter-cards__number">150+</h3>
<p></p>
<p>Research projects</p>
<p></p>
</div>
<div class="counter-cards__item counter-cards__item--green">
<h3 class="counter-cards__number">300+</h3>
<p></p>
<p>Patents</p>
<p></p>
</div>
</div>
</div>
</section>
<section class="accreditation-section text-center">
<div class="container">
<h1 class="accreditation-title" style="color: white">Recognition. Renown.</h1>
<h2 class="accreditation-title" style="color: white">Accreditations</h2>
<p class="accreditation-description">
Enter a realm where creativity ignites excellence at ANITS.
Home to the illustrious NAAC "A+" honour and a beacon in India's NIRF top 150,
we're a cradle of greatness recognised by AICTE, TCS, and JNTU(H).
Here, horizons are limitless, and dreams are the seeds of reality.
Embrace the canvas where your brightest colours come alive.
</p>
<div class="accreditation-cards row">
<div class="accreditation-card col-md-4">
<img src="/static/images/NBA-1-150x117.png" alt="NBA Accreditation">
<h3>NBA Accreditation</h3>
</div>
<div class="accreditation-card col-md-4">
<img src="/static/images/naac-1.png" alt="NAAC A Accreditation">
<h3>NAAC "A+" Accreditation</h3>
</div>
<div class="accreditation-card col-md-4" >
<img src="/static/images/UGC.png" alt="UGC Autonomous">
<h3>UGC Autonomous</h3>
</div>
</div>
</div>
</section>
<section class="p-0 card-container" style="margin-top: 30px;">
<div class="container">
<div class="row">
<div class="col-sm-6">
<div class="card-header">
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<h2 class="text-white">Events</h2>
</div>
<div class="card-content">
<!-- Double the news items for seamless loop -->
<!-- First set of items -->
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Two-Day International Conference on
AI in ELT: Bridging Pedagogy and Performance in the Digital Age"
data-id="35"
data-description=""
data-date="27 Jun 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">27</span>
<span>Jun 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Two-Day International Conference on
AI in ELT: Bridging Pedagogy and Performance in the Digital Age
</h5>
<p class="news-desc">
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conference
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: ENGLISH
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Online FDP on Transforming in Medical Research with Next-Gen AI : Machine Learning & Deep Learning in Action"
data-id="13"
data-description="The Department of CSE is organizing an online FDP on Transforming in Medical Research with Next-Gen AI : Machine Learning & Deep Learning in Action
In Association With Electronics & ICT Academy, NIT Warangal from 16th June 2025 to 26th June 2025. Registration Link : https://forms.gle/HoW7W2HLnYZK7hcTA."
data-date="16 Jun 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">16</span>
<span>Jun 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Online FDP on Transforming in Medical Research with Next-Gen AI : Machine Learning & Deep Learning in Action
</h5>
<p class="news-desc">
The Department of CSE is organizing an online FDP on Transforming in Medical Research with Next-Gen AI : Machine Learning …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> FDP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="ONLINE FACULTY DEVELOPMENT PROGRAMME (FDP)
ON AI Innovations in Computer Vision, IoT, and Medical Imaging
Applications"
data-id="14"
data-description="AI Innovations in Computer Vision, IoT, and Medical Imaging
Applications
(16th June - 26th June 2025)
Organised by
Electronics & ICT Academy, NIT Warangal
In association with
Department of ECE, Anil Neerukonda Institute of Technology and Sciences(A) (ANITS),
Sangivalasa, Bheemunipatnam Mandal, Visakhapatnam-531162.
Registration Link: https://forms.gle/H54cYKHtotSVAm828"
data-date="16 Jun 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">16</span>
<span>Jun 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
ONLINE FACULTY DEVELOPMENT PROGRAMME (FDP)
ON AI Innovations in Computer Vision, IoT, and Medical Imaging
Applications
</h5>
<p class="news-desc">
AI Innovations in Computer Vision, IoT, and Medical Imaging Applications (16th June - 26th June 2025) Organised by Electronics & …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> FDP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: ECE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="AI Workshop: Advanced Chatbot Development"
data-id="15"
data-description="1. Introduction
The AI Workshop on Chatbot Development was conducted as part of a skill development program aimed at equipping participants with hands-on experience in building AI-powered chatbots. The workshop covered fundamental concepts of artificial intelligence, natural language processing (NLP), and chatbot development using various frameworks and tools.
2. Objectives
The primary objectives of the workshop were:
• To provide an understanding of AI and its applications in chatbot development.
• To introduce participants to NLP and its role in AI-driven conversations.
• To develop and deploy a functional chatbot for real-world applications.
3. Workshop Highlights
• Introduction to AI and NLP
o Basics of AI and machine learning
o Overview of NLP techniques for chatbot interaction
o Understanding chatbot architecture (Rule-based vs. AI-powered)
• Chatbot Development
o Hands-on coding session to build a simple chatbot
o Training the chatbot with custom datasets
4. Key Takeaways
• Participants gained theoretical knowledge and hands-on experience in chatbot development.
• They learned how to integrate AI models into chatbots for better conversational capabilities.
• The session provided insights into real-world applications in customer service, education, and business automation.
• A final project demonstration allowed participants to showcase their chatbot solutions.
5. Conclusion
The AI workshop successfully provided a comprehensive learning experience on chatbot development, enabling participants to apply AI concepts in practical scenarios. With growing demand for AI-powered conversational agents, this skill development program empowered attendees with the knowledge and tools needed to build intelligent chatbots."
data-date="03 Apr 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">03</span>
<span>Apr 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
AI Workshop: Advanced Chatbot Development
</h5>
<p class="news-desc">
1. Introduction The AI Workshop on Chatbot Development was conducted as part of a skill development program aimed at equipping …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Workshop
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: IT
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="💻 CSI: Code Zen Contest"
data-id="20"
data-description="Description:
CodeZen was a high-energy, multi-round coding contest designed for 1st and 2nd-year students across all departments. Conducted via the Unstop platform, the event attracted 150+ participants and challenged their coding, logic, and analytical skills.
Key Highlights:
• 3 competitive rounds on Unstop
• Cross-department participation
• Strong focus on logic, fluency, and speed
"Code smart. Code fast. CodeZen!""
data-date="03 Apr 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">03</span>
<span>Apr 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
💻 CSI: Code Zen Contest
</h5>
<p class="news-desc">
Description: CodeZen was a high-energy, multi-round coding contest designed for 1st and 2nd-year students across all departments. Conducted via the …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> CSI
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Training Programme - DevOps"
data-id="16"
data-description="The recent event on DevOps and the Software Development Life Cycle (SDLC) turned out to be a fantastic experience for everyone involved. It kicked off with a warm introduction from the HOD, who set a positive tone for the day. We were excited to have a guest speaker with immense expertise, who shared valuable insights into the world of modern software development.
During the session, the speaker delved into key DevOps principles and SDLC methodologies, emphasizing how important concepts like automation, continuous integration and delivery (CI/CD), Infrastructure as Code (IaC), and containerization are in today’s industry. Students were especially engaged as they got hands-on experience with essential DevOps tools like Git, Jenkins, Docker, Kubernetes, Terraform, and the ELK Stack, learning how these tools are applied in real-world scenarios.
One of the highlights was the interactive Q&A session, which allowed students to ask questions about potential career paths, current industry trends, and relevant certifications. It was clear that there is a growing demand for professionals in the DevOps field, and participants left feeling inspired and informed.
The feedback from attendees was overwhelmingly positive, with many appreciating the practical approach and the relevance of the content to the industry. Looking ahead, we hope to offer hands-on workshops, guidance on certifications, and expert panel discussions to further enhance students’ technical skills and career readiness.
Overall, the event was not just educational but also highly engaging, leaving students equipped with essential skills for the future. It was a day well spent!"
data-date="03 Mar 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">03</span>
<span>Mar 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Training Programme - DevOps
</h5>
<p class="news-desc">
The recent event on DevOps and the Software Development Life Cycle (SDLC) turned out to be a fantastic experience for …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: IT
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Guest Talk on "Role of STPI in Promoting Entrepreneurship""
data-id="5"
data-description="🚀 Guest Talk on Entrepreneurship at ANITS CSE! 🚀
ANITS CSE hosted a Guest Talk on "Role of STPI in Promoting Entrepreneurship" with Dr. Suresh Batha, Additional Director, STPI as the speaker.
The session highlighted startups, innovation, government schemes, and the importance of technology for societal impact.
💡 Key Highlights:
✅ ANITS secured 4/5-star rating in MHRD 2022 IIC ranking
✅ Significant funding for IoT-enabled smart solar system & Harmonic Farming
✅ Hackathon success & startup opportunities
💬 "Success is a continuous journey!" – Dr. Suresh Batha"
data-date="12 Feb 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">12</span>
<span>Feb 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Guest Talk on "Role of STPI in Promoting Entrepreneurship"
</h5>
<p class="news-desc">
🚀 Guest Talk on Entrepreneurship at ANITS CSE! 🚀 ANITS CSE hosted a Guest Talk on "Role of STPI in …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Talk
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="👨💻ISTE : Blind Code Challenge 👩💻"
data-id="18"
data-description="Coding in the dark—literally! “Blind Code” tested students' raw coding skills as they solved problems without viewing their monitors. Held in the Department Lab, this event saw enthusiastic participation from 100 second and third-year B.Tech students.
Key Highlights:
• Intense coding with no screen visibility
• 10 finalists from both 2nd and 3rd year moved to Round 2
• Strong engagement and technical excitement
"Code with your mind, not your eyes!""
data-date="28 Jan 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">28</span>
<span>Jan 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
👨💻ISTE : Blind Code Challenge 👩💻
</h5>
<p class="news-desc">
Coding in the dark—literally! “Blind Code” tested students' raw coding skills as they solved problems without viewing their monitors. Held …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> ISTE
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🌐 WORKSHOP on Computer Networking"
data-id="22"
data-description="A comprehensive Workshop on Computer Networking was conducted in multiple batches, engaging a total of 254 students from the CSM stream from 21/1/2025 to 30/1/2025.The workshop was facilitated by Mr. K. Vijay Kumar from Iconic Computers.
Designed to provide foundational to intermediate-level knowledge, the workshop blended theoretical concepts with hands-on practical sessions, enabling students to gain a solid understanding of the core principles of computer networking. By focusing on the architecture, protocols, and technologies that form the backbone of modern communication systems, the workshop empowered participants to build critical technical skills essential for both academic advancement and industry readiness.
Key Highlights:
• Hands-on networking simulations
• Batch-wise detailed sessions
• Conceptual clarity in real-time setups
"Connecting the world, one packet at a time!"
Gallery"
data-date="21 Jan 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">21</span>
<span>Jan 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🌐 WORKSHOP on Computer Networking
</h5>
<p class="news-desc">
A comprehensive Workshop on Computer Networking was conducted in multiple batches, engaging a total of 254 students from the CSM …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> WORKSHOP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🎓 Online Faculty Development Program (FDP) on “Revolutionizing Education with Machine Learning & Generative AI”"
data-id="30"
data-description="The Department of Computer Science and Engineering (AI & ML) at ANITS, in association with the Electronics & ICT Academy, NIT Warangal, organized a ten-day Faculty Development Programme (FDP) titled "Revolutionizing Education with Machine Learning & Generative AI." The event was coordinated by Dr. M. A. Srinuvasu and overseen by Dr. K. Selvani Depthi, Head of the Department.
The FDP comprised two sessions per day, totalling 20 insightful sessions. A distinguished panel of 12 speakers from reputed institutions such as IITs, NITs, IIITs, foreign universities, and industry experts shared their expertise. The sessions delved into core topics including Artificial Intelligence, Machine Learning, Deep Learning, and the transformative role of Generative AI in modern education.
This FDP served as a dynamic platform for educators and researchers to explore cutting-edge AI technologies and their applications in educational innovation, curriculum development, and personalized learning experiences.
Such initiatives not only bridge the gap between academia and industry but also pave the way for a smarter, AI-driven future in education.
Key Highlights:
• Deep dive into ML, DL, and Generative AI
• Hands-on learning for real-world implementation
• Collaboration between academia and industry
"Empowering educators to shape AI-powered classrooms!""
data-date="03 Jan 2025"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">03</span>
<span>Jan 2025</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🎓 Online Faculty Development Program (FDP) on “Revolutionizing Education with Machine Learning & Generative AI”
</h5>
<p class="news-desc">
The Department of Computer Science and Engineering (AI & ML) at ANITS, in association with the Electronics & ICT Academy, …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> FDP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🗣Guest Lecture on “Enhancing Interview Skills for Beginners”"
data-id="27"
data-description="A guest lecture on Enhancing Interview Skills for Beginners was conducted from 9:00 AM to 12:00 PM, attended by 74 students from II/IV B.Tech CSM & CSD. The session was led by Dr. Sabirunnisa Gouse, Assistant Professor of English – FED, with the objective of preparing students for the competitive job market.
The session covered key aspects of interview readiness, including body language, communication strategies, and techniques for handling challenging questions. With a focus on building confidence and clarity, the lecture equipped students with practical tools to effectively present themselves during interviews and take their first steps toward professional success.
Key Highlights:
• Resume building, mock interviews & do’s/don’ts
• Real-time feedback and interactive session
• Practical prep for placements
"Ace your first impression!""
data-date="31 Dec 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">31</span>
<span>Dec 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🗣Guest Lecture on “Enhancing Interview Skills for Beginners”
</h5>
<p class="news-desc">
A guest lecture on Enhancing Interview Skills for Beginners was conducted from 9:00 AM to 12:00 PM, attended by 74 …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🧠 Guest Lecture on “Explainable Deep Learning to solve real time problems in various Domains”"
data-id="25"
data-description="An enlightening guest lecture on Explainable AI (XAI) Techniques was conducted from 9:00 AM to 12:00 PM, engaging 118 students from III/IV B.Tech CSM & CSD programs. The session was delivered by Dr. Chandra Mohan D, Assistant Professor at IIIT Sri City, who provided an in-depth exploration of how explainable AI enhances transparency and interpretability in deep learning models.
Key Highlights:
• Deep learning applications across domains
• Focus on explainability and interpretability
• Expert-led with academic depth
"AI that’s not just smart—but also understandable!""
data-date="23 Dec 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">23</span>
<span>Dec 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🧠 Guest Lecture on “Explainable Deep Learning to solve real time problems in various Domains”
</h5>
<p class="news-desc">
An enlightening guest lecture on Explainable AI (XAI) Techniques was conducted from 9:00 AM to 12:00 PM, engaging 118 students …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Industrial Visit - Andhra Pradesh MedTech Zone (AMTZ) in Visakhapatnam"
data-id="6"
data-description="The visit aimed to provide students with practical insights into the workings of a med-tech manufacturing ecosystem and its role in the healthcare industry.
The primary objectives of the visit were:
1. To understand the functioning of AMTZ as a manufacturing hub.
2. To explore operational strategies and business models in the med-tech sector.
3. To gain exposure to cutting-edge medical technology and its economic impact.
4. To relate management theories to real-world industrial practices."
data-date="13 Dec 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">13</span>
<span>Dec 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Industrial Visit - Andhra Pradesh MedTech Zone (AMTZ) in Visakhapatnam
</h5>
<p class="news-desc">
The visit aimed to provide students with practical insights into the workings of a med-tech manufacturing ecosystem and its role …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Industrial Visit
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: MBA
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Two day workshop on “Artificial Intelligence for Chemical Engineers”"
data-id="8"
data-description="The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students chapter under Walter Region Centre organized a two day National student conference, “CHEMFLARE-2024”, during 1st and 2nd March 2024. Prof. R. Srikanth, Head of the chemical Engineering department, ANITS is the president of the inaugural function, Ms. S. Harika, Faculty convener, Ms. S. Srivalli, Student president RACE body were also present on the dais.
Prof. R. Srikanth, advised students to be actively involve in workshops, conferences, technical fests conducted. He encouraged our participants to study more and enlarge their knowledge in Chemical Engineering and applauded the role of a chemical engineer and also informed that the world is moving faster in technology and science.
Ms. S. Srivalli, RACE president, expressed that, the department will always encourage students to participate in various technical and extra-curricular activities. She also informed the activities of the CHEMFLARE-2024 such as Resonate (paper presentation), Re-vibe (poster presentation), reflux (model expo), reminisce (cross word), contests like Treasure Hunt, Wheel Reel and Create a Meme.
Ms. S. Harika, Faculty convener, thanked all the participants 65 are from outside colleges and 109 are in-house participants. She congratulated all the winners of various events. She expressed that all this would not have been possible, if it wasn’t for the students and faculty of our Chemical Engineering Department, working tirelessly and stepping out of their comfort zone to bring out the best in all the parts of this event. Hours of planning, coordinating and organizing went into the making of this conference, and we are all very glad to see it reaping amazing results from the amount of participation and appreciation that we are getting these past two days. She expressed gratitude for Prof. S. Subba Rao, Dr. Ch. Anil, Mr. M. Koteswara Rao, Dr. K. China Malakondaiah, Dr. D. Anjali, and Mr. B. Pradeep Santosh Kumar, other supporting staff, and Students who made the event grand success."
data-date="09 Dec 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">09</span>
<span>Dec 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Two day workshop on “Artificial Intelligence for Chemical Engineers”
</h5>
<p class="news-desc">
The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🛡️ Guest Lecture on “Empowering Women, Ending Violence & Cyber Crimes”"
data-id="24"
data-description="A powerful and insightful session on Gender Rights, Women's Safety, and Combating Cybercrimes was conducted from 11:00 AM to 12:00 PM, engaging 80 students from II/IV B.Tech CSM & CSD programs. The session was led by Mr. Chowdari Hari Krishna, Sub-Inspector, Civil Law & Order, who emphasized the importance of understanding gender rights, ensuring women's safety, and recognizing the growing impact of cybercrimes in today’s digital era.
The talk highlighted the crucial intersection of technology and social responsibility, encouraging students to become proactive in promoting a safe, respectful, and inclusive digital environment. The session empowered students with knowledge of legal provisions, digital safety practices, and the importance of being vigilant and empathetic digital citizens.
Key Highlights:
• Awareness on violence, safety, and cyber laws
• Real-world examples of cybercrime scenarios
• Proactive measures and legal empowerment
"Empower. Educate. Evolve.""
data-date="25 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">25</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🛡️ Guest Lecture on “Empowering Women, Ending Violence & Cyber Crimes”
</h5>
<p class="news-desc">
A powerful and insightful session on Gender Rights, Women's Safety, and Combating Cybercrimes was conducted from 11:00 AM to 12:00 …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🔧 Guest Lecture on “Tech Trends Awareness: “Empowering Growth”"
data-id="29"
data-description="As part of the Life Skills series, a guest lecture titled “Tech Trends Awareness: Empowering Growth” was held from 9:00 AM to 12:00 PM, with the participation of 60 students from II/IV B.Tech CSM. The session was delivered by Mr. Dharanidhar Sunkari, Technical Lead at Proservartner, focusing on equipping students with awareness of transformative technologies shaping the future.
The lecture explored six major domains—Artificial Intelligence (AI), Machine Learning (ML), Internet of Things (IoT), Robotic Process Automation (RPA), Cloud Computing, and Cybersecurity. Through real-world case studies, emerging industry trends, and practical insights, students were inspired to embrace innovation and prepare themselves to lead in a dynamic digital landscape. The session emphasized adaptability, continuous learning, and proactive skill development as essential life skills for future-ready professionals.
Key Highlights:
• Industry-ready skills in tech
• Strategic upskilling for future careers
• Insightful career-building roadmap
"Stay ahead by staying informed!""
data-date="23 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">23</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🔧 Guest Lecture on “Tech Trends Awareness: “Empowering Growth”
</h5>
<p class="news-desc">
As part of the Life Skills series, a guest lecture titled “Tech Trends Awareness: Empowering Growth” was held from 9:00 …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🚀 ISTE: IDEATHON Contest 🚀"
data-id="17"
data-description="The “Ideathon Contest” at ANITS was a powerhouse of innovation and creativity! This exciting event offered students a platform to solve real-world problems using cutting-edge technologies like AI, ML, and Data Science. A total of 64 students formed 12 dynamic teams to participate in this highly collaborative and intellectually stimulating challenge.
Key Highlights:
• Innovation-driven collaboration
• AI/ML & Data Science problem-solving
"Great ideas come from teamwork and passion!""
data-date="20 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">20</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🚀 ISTE: IDEATHON Contest 🚀
</h5>
<p class="news-desc">
The “Ideathon Contest” at ANITS was a powerhouse of innovation and creativity! This exciting event offered students a platform to …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> ISTE
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="How to crack a job interview"
data-id="34"
data-description="A one day seminar is organized by Department of Chemistry (FED) on Life Skills “How to crack a job interview” on 20th November 2024."
data-date="20 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">20</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
How to crack a job interview
</h5>
<p class="news-desc">
A one day seminar is organized by Department of Chemistry (FED) on Life Skills “How to crack a job interview” …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Seminar
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMISTRY
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Solid Waste Management"
data-id="33"
data-description="An outreach and extension programme is organized along with the students of Chemical and Electrical and Electronics Engineering at Zilla Parishad High School, Boni (V), Anandapuram (M), Visakhapatnam on Solid Waste Management held on 16th November 2024."
data-date="16 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">16</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Solid Waste Management
</h5>
<p class="news-desc">
An outreach and extension programme is organized along with the students of Chemical and Electrical and Electronics Engineering at Zilla …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Outreach Program
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMISTRY
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Language and Communication Skills: Enhancing Interview Skills for Beginners"
data-id="32"
data-description="A one day seminar is organized by Department of Chemistry (FED) on Capacity Development and Skill-Enhancing Activity “Language and Communication Skills: Enhancing Interview Skills for Beginners” for Chemical and Civil Engineering students on 15th November 2024."
data-date="15 Nov 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">15</span>
<span>Nov 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Language and Communication Skills: Enhancing Interview Skills for Beginners
</h5>
<p class="news-desc">
A one day seminar is organized by Department of Chemistry (FED) on Capacity Development and Skill-Enhancing Activity “Language and Communication …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Seminar
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMISTRY
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="💬Guest Lecture on “Emotional Intelligence (EI)”"
data-id="26"
data-description="A guest lecture on Emotional Intelligence was held from 9:00 AM to 12:00 PM for 49 students of II/IV B.Tech CSM & CSD, delivered by Ms. G. Lavanya, Assistant Professor of English – FED. The session emphasized the importance of self-awareness, empathy, and communication in academic and professional success. Real-life success stories shared by the speaker provided practical insights, helping students connect theory with real-world application and encouraging them to strengthen their emotional intelligence for holistic growth.
Key Highlights:
• Networking, mentorship & growth through EI
• Emotional self-regulation and active listening
• Real-world case discussions
"EQ is the new IQ!""
data-date="29 Oct 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">29</span>
<span>Oct 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
💬Guest Lecture on “Emotional Intelligence (EI)”
</h5>
<p class="news-desc">
A guest lecture on Emotional Intelligence was held from 9:00 AM to 12:00 PM for 49 students of II/IV B.Tech …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="⏳ Workshop on Time Management & Goal Setting"
data-id="28"
data-description="A Workshop on Time Management & Goal Setting was conducted from 9:00 AM to 12:00 PM, with participation from 50 students of II/IV B.Tech CSD. The session was led by Mrs. T. Sunandha Tulasi, Assistant Professor of English – FED, and aimed to empower students with practical strategies for achieving academic and career success.
The workshop focused on essential skills such as setting meaningful goals, time-blocking, identifying and minimizing distractions, and utilizing planners effectively. Through interactive discussions and hands-on techniques, students were encouraged to take control of their time and align their daily activities with long-term aspirations.
Key Highlights:
• Life planning strategies for students
• Stress reduction through time mastery
• Personalized goal-setting
"Plan well. Act better. Succeed faster!""
data-date="28 Oct 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">28</span>
<span>Oct 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
⏳ Workshop on Time Management & Goal Setting
</h5>
<p class="news-desc">
A Workshop on Time Management & Goal Setting was conducted from 9:00 AM to 12:00 PM, with participation from 50 …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> WORKSHOP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🤖 WORKSHOP on Robotic Process Automation (RPA)"
data-id="21"
data-description="Description:
A 3-day hands-on workshop aimed at familiarizing students with real-life applications of RPA tools and technologies. Delivered by senior students from 3rd-year CSD-B to II/IV B. Tech CSM Students and total: 85 students participated, it helped attendees gain technical fluency in business process automation.
Key Highlights:
• Real-world exposure to RPA tools
• Peer-led knowledge sharing
• Emphasis on automation & industry readiness
"Automate the routine. Accelerate innovation!""
data-date="18 Sep 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">18</span>
<span>Sep 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🤖 WORKSHOP on Robotic Process Automation (RPA)
</h5>
<p class="news-desc">
Description: A 3-day hands-on workshop aimed at familiarizing students with real-life applications of RPA tools and technologies. Delivered by senior …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> WORKSHOP
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🧭CSI: Tech Trek: Technical Treasure Hunt"
data-id="19"
data-description="Description:
CSI’s first-ever Tech Trek was an exhilarating treasure hunt, designed around the theme “Abhimanyu’s Escape from the Chakravyuha,” blending mythology with modern tech challenges. Students from 2nd, 3rd, and 4th year (CSM, CSD, CSE) participated with full enthusiasm.
Key Highlights:
• Interactive, theme-based technical treasure hunt
• Inspired by Mahabharata’s tactical depth
• Hosted by HOD Dr. K. Selvani Deepthi with coordination by Ms. M.V. Bhuvaneshwari
"Strategy meets technology in every clue!""
data-date="13 Sep 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">13</span>
<span>Sep 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🧭CSI: Tech Trek: Technical Treasure Hunt
</h5>
<p class="news-desc">
Description: CSI’s first-ever Tech Trek was an exhilarating treasure hunt, designed around the theme “Abhimanyu’s Escape from the Chakravyuha,” blending …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> CSI
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="🌸Guest Lecture on Gynaecological Issues in Youngsters"
data-id="23"
data-description="This insightful seminar focused on raising awareness about reproductive health challenges faced by young women. Dr. Roohi Khaja (Resource Person, M.B.B.S, Medical Administrator, OMNI Hospital, University of West Indie) addressed to III/IV B.Tech CSM , 104 students participated and she discussed about the essential issues related to early detection, prevention, and proper care, creating a supportive space for open dialogue and knowledge sharing.
Key Highlights:
• Women’s health and wellness awareness
• Participation from 3rd and 4th-year students
• Focus on early detection and education
"Healthy minds thrive in healthy bodies!""
data-date="29 Aug 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">29</span>
<span>Aug 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
🌸Guest Lecture on Gynaecological Issues in Youngsters
</h5>
<p class="news-desc">
This insightful seminar focused on raising awareness about reproductive health challenges faced by young women. Dr. Roohi Khaja (Resource Person, …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Guest Lecture
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE-AI-ML
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Excellene Through Meditation"
data-id="31"
data-description="A one day workshop is organized by Department of Chemistry in association with Women and Redressal cell for faculty on Excellene Through Meditation on 15th July 2024."
data-date="15 Jun 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">15</span>
<span>Jun 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Excellene Through Meditation
</h5>
<p class="news-desc">
A one day workshop is organized by Department of Chemistry in association with Women and Redressal cell for faculty on …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Workshop
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMISTRY
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="National Student Conference CHEMFLARE 2K24"
data-id="7"
data-description="The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students chapter under Walter Region Centre organized a two day National student conference, “CHEMFLARE-2024”, during 1st and 2nd March 2024. Prof. R. Srikanth, Head of the chemical Engineering department, ANITS is the president of the inaugural function, Ms. S. Harika, Faculty convener, Ms. S. Srivalli, Student president RACE body were also present on the dais.
Prof. R. Srikanth, advised students to be actively involve in workshops, conferences, technical fests conducted. He encouraged our participants to study more and enlarge their knowledge in Chemical Engineering and applauded the role of a chemical engineer and also informed that the world is moving faster in technology and science.
Ms. S. Srivalli, RACE president, expressed that, the department will always encourage students to participate in various technical and extra-curricular activities. She also informed the activities of the CHEMFLARE-2024 such as Resonate (paper presentation), Re-vibe (poster presentation), reflux (model expo), reminisce (cross word), contests like Treasure Hunt, Wheel Reel and Create a Meme.
Ms. S. Harika, Faculty convener, thanked all the participants 65 are from outside colleges and 109 are in-house participants. She congratulated all the winners of various events. She expressed that all this would not have been possible, if it wasn’t for the students and faculty of our Chemical Engineering Department, working tirelessly and stepping out of their comfort zone to bring out the best in all the parts of this event. Hours of planning, coordinating and organizing went into the making of this conference, and we are all very glad to see it reaping amazing results from the amount of participation and appreciation that we are getting these past two days. She expressed gratitude for Prof. S. Subba Rao, Dr. Ch. Anil, Mr. M. Koteswara Rao, Dr. K. China Malakondaiah, Dr. D. Anjali, and Mr. B. Pradeep Santosh Kumar, other supporting staff, and Students who made the event grand success."
data-date="01 Mar 2024"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">01</span>
<span>Mar 2024</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
National Student Conference CHEMFLARE 2K24
</h5>
<p class="news-desc">
The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="AWS Cloud Computing Training Program"
data-id="2"
data-description="1.To disseminate the knowledge of Amazon Web Services among students, researchers and academicians
2. To discuss the current status of Amazon Web Services and research work in India and
across the world"
data-date="04 Dec 2023"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">04</span>
<span>Dec 2023</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
AWS Cloud Computing Training Program
</h5>
<p class="news-desc">
1.To disseminate the knowledge of Amazon Web Services among students, researchers and academicians 2. To discuss the current status of …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Others
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="BlockChain Technology and it’s Applications"
data-id="3"
data-description="Blockchain is a technology that enables the secure sharing of information. Data, obviously, is
stored in a database. Transactions are recorded in an account book called a ledger. A blockchain
is a type of distributed database or ledger—one of today’s top tech trends—which means the
power to update a blockchain is distributed between the nodes, or participants, of a public or
private computer network. Solidity is a high-level programming language designed for
implementing smart contracts. Several industrial applications of blockchain technology
include food supply chain traceability, financial service for the banking industry, decentralized
data storage in healthcare applications, logistics, additive manufacturing and a lot more."
data-date="08 Aug 2023"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">08</span>
<span>Aug 2023</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
BlockChain Technology and it’s Applications
</h5>
<p class="news-desc">
Blockchain is a technology that enables the secure sharing of information. Data, obviously, is stored in a database. Transactions are …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="National Student conference CHEMFLARE-2K23"
data-id="9"
data-description="The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students chapter under Walter Region Centre organized a two day National student conference, “CHEMFLARE-2023”, during 2nd and 3rd March 2023. Prof. R. Srikanth, Head of the chemical Engineering department, ANITS is the president of the inaugural function, Dr. Ch. Anil, Faculty convener, Mr. P. Naveen Kumar, Student president RACE body were also present on the dais.
Prof. R. Srikanth, advised students to be actively involve in workshops, conferences, technical fests conducted. He informed that, the chemical engineers are good at cause and effect of the process. He advised students to be like bigfish in small pond but not like a small fish in a big lake. He emphasized that the future is for Electric Vehicles, Catalysis, Biotechnology and Nanotechnology.
Dr. Ch. Anil, Faculty convener, highlighted the difference between the academic environment and industrial environment. He expressed that, the department will always encourages students to participate in various technical and extra-curricular activities. He also informed that, such events and activities will be organized in future also for the benefit of the students. He also informed the activities of the CHEMFLARE-2023 such as Resonate (paper presentation), Re-vibe (poster presentation), reflux (model expo), reminisce (cross word), spot events like mock CID, mock parliament and sports
Mr. P. Naveen Kumar, Student president RACE body, thanked all the participants 52 are from outside colleges and 120 are in-house participants. He congratulated all the winners of various events. He expressed gratitude for Prof. S. Subba Rao, Mr. K. Koteswara Rao, Ms. S. Harika, Dr. K. China Malakondaiah, Dr. D. Anjali, and Mr. Pradeep Santosh Kumar, other supporting staff, and Students who made the event grand success."
data-date="02 Mar 2023"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">02</span>
<span>Mar 2023</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
National Student conference CHEMFLARE-2K23
</h5>
<p class="news-desc">
The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="Workshop on Full Stack .net"
data-id="4"
data-description=""
data-date="23 Feb 2023"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">23</span>
<span>Feb 2023</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
Workshop on Full Stack .net
</h5>
<p class="news-desc">
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CSE
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="National Student conference CHEMFLARE-2K22"
data-id="10"
data-description="The Department of Chemical Engineering, ANITS has organized a two day National Level Student Conference Chemflare 2k22 during 21 st April – 22 nd April, 2022. With a total participation of 51 students, of which students are from GPCE, RVR & JC, JNTUK,MVGR GVP and GMRIT. We saw more enthusiasm and an increase in the number of participants than last year. With a total of two technical paper presentation sessions, a poster session, how do you react, technical treasure hunt and various spot events, the participants were given various exciting and demanding platforms, by which they were able to improve their skills and knowledge. With a total of 11 prototype models, 18 papers and 6 posters are presented, the competition was indeed tough. Students were highly enlightened with technical events and spot events."
data-date="21 Apr 2022"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">21</span>
<span>Apr 2022</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
National Student conference CHEMFLARE-2K22
</h5>
<p class="news-desc">
The Department of Chemical Engineering, ANITS has organized a two day National Level Student Conference Chemflare 2k22 during 21 st …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="National Student conference CHEMFLARE-2K20"
data-id="11"
data-description="The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students chapter under Walter Region Centre was organizing a two day National student conference, “CHEMFLARE-2020”, during 19th and 20th February 2020. The chief guest of the inaugural function is Sri G.S.V.S.S.S Prasad Sarma, Executive Director (Retd.), Visakha Refinery, HPCL, the guest of honour Mr. Naveen Neerukond, Treasurer, ANES, Prof. T.V. Hanumantha Rao, Principal; ANITS is the president of the function. Dr. Ch. Anil, Head of the chemical Engineering department and Mr. B. Pradeep Santosh Kumar, Faculty convener, Mr. J. Sashidhar Student president RACE body are also present on the dais.
Prof. T.V. Hanumantha Rao, in his presidential remarks informed the students that, the change in technological trends are taking place, the growth and transform in process industries are fast. The students need to foresee these changes should be updated with computational skills, optimization and data sciences. He also emphasized the importance of sustainable development, zero discharge, waste management and advised all the chemical engineering students to work in these areas
Mr. N. Naveen, the Guest honour, advised students to be actively involve in workshops, conferences, technical fests conducted. He informed that, the chemical engineers are good at cause and effect of the process. He advised students to be like bigfish in small pond but not like a small fish in a big lake
Mr. Prasad Sarma, the Chief Guest, highlighted the difference between the academic environment and industrial environment. Teaching faculty, friends, supporting system etc. will help the students in academic environment, whereas, the more competition will prevail at industrial environment. The human skills, technical skills and delivery skills will be dominating the industry environment. He emphasised the importance of IQ, EQ and SQ in industry. He also emphasised that the future is for Eclectic Vehicles, Catalysis, Biotechnology and Nanotechnology
HOD, Dr. Ch. Anil, in his address expressed, the department will always encourages students to participate in various technical and extra-curricular activities. He also informed that, such events and activities will be organized in future also for the benefit of the students"
data-date="19 Feb 2020"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">19</span>
<span>Feb 2020</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
National Student conference CHEMFLARE-2K20
</h5>
<p class="news-desc">
The Department of Chemical Engineering, ANITS, Visakhapatnam, in association with RACE (Rays of ANITS Chemical Engineers) & ANITS IIChE Students …
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
<a href="#" class="event-item" data-bs-toggle="modal" style="decoration:none"
data-bs-target="#eventModal"
data-title="National workshop on MATLAB for Engineers-2019"
data-id="12"
data-description=""
data-date="27 Dec 2019"
data-gallery=""><div class="news-item">
<div class="news-date">
<span class="day">27</span>
<span>Dec 2019</span>
</div>
<div class="news-content">
<h5 class="news-title">
<span class="news-indicator indicator-new"></span>
National workshop on MATLAB for Engineers-2019
</h5>
<p class="news-desc">
</p>
<div>
<span class="news-tag">
<i class="fas fa-tag me-1"></i> Conferences / Workshops
</span>
<span class="news-tag">
<i class="fas fa-calendar-alt me-1"></i> Department: CHEMICAL
</span>
</div>
</div>
</div></a>
</div>
</div>
<div class="col-sm-6">
<div class="" style="width:100%; background-color: #fff;">
<div class="card-header">
<div class="bubble"></div>
<div class="bubble"></div>
<div class="bubble"></div>
<h2 class="text-white">Bulletin Board</h2>
</div>
<!-- Scrollable Container -->
<div class="scrollable-bulletin" style="max-height: 470px; overflow-y: auto;">
<ul class="bulletin-list mb-0">
<li class="bulletin-item">
<a href="/media/circular/MBA_I-Sem_Supply._MBA_IV-Sem_Regular-RECOUNTING-CHALLENGE_VALUATION_CIRCULAR.pdf"
target="_blank">
<span class="dot">●</span> MBA I-Sem Supply., MBA IV-Sem Regular-RECOUNTING-CHALLENGE VALUATION CIRCULAR
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/I-IV_B.Tech_I-SEM_Regular_Exams._R24-Recounting_Results.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.Tech I-SEM Regular Exams. (R24)-Recounting Results
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/I-IV_B.Tech_I-SEM_Regular_Exams._R24-Challenge_Valuation_Results.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.Tech I-SEM Regular Exams. (R24)-Challenge Valuation Results
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/MBA_II-SEMESTER_REGULAR__SUPPLEMENTARY_EXAMINATIONS_TIME_TABLE-JULY-2025_R23.pdf"
target="_blank">
<span class="dot">●</span> MBA II-SEMESTER REGULAR & SUPPLEMENTARY EXAMINATIONS TIME TABLE-JULY-2025 (R23)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/IV-IV_B.Tech_I-Sem_Supplementary_Exans_R20_-June-2025_-_SPECIAL_DRIVE_RESULTS.pdf"
target="_blank">
<span class="dot">●</span> IV-IV B.Tech I-Sem Supplementary Exans (R20) -June-2025 - SPECIAL DRIVE RESULTS
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.Tech_I-Sem_Supplementary_Exans_R20_-June-2025_-_SPECIAL_DRIVE_RESULTS.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.Tech I-Sem Supplementary Exans (R20) -June-2025 - SPECIAL DRIVE RESULTS
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.TECH_SEM_I_WP-CHEMICAL_Regular_Examinations-January-2025-RESULTS_R23.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.TECH SEM I (WP-CHEMICAL) Regular Examinations-January-2025-RESULTS (R23)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/timetable.pdf"
target="_blank">
<span class="dot">●</span> III-IV B.TECH I-SEMESTER SUPPLEMENTARY EXAMINATIONS TIME TABLES-JULY-2025 (R15,R19,R20,R20.1)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/I-IV_B.TECH_I-SEM_SUPPLEMENTARY_EXAMS_FEE_NOTIFICATION__FEE_PAYMENT_INSTRUCTIONS.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.TECH I-SEM SUPPLEMENTARY EXAMS FEE NOTIFICATION & FEE PAYMENT INSTRUCTIONS
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/IV-IV_B.TECH_I-SEM_SUPPLEMENTARY_EXAMINATIONSR15R19R20_320SERIES_R20_A211_SERIES_0001.pdf"
target="_blank">
<span class="dot">●</span> IV/IV B.TECH I-SEMESTER SUPPLEMENTARY EXAMINATIONS(R15),(R19), (R20 320 SERIES) & (R20 A211 SERIES)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.TECH_SEM-I_SUPPLY_EXAMINATION_NOTIFICATION_0001.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.TECH SEM-I SUPPLY EXAMINATION NOTIFICATION
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.Tech_sem-II_Working_Professionals_Exam_time_table_June_2025Mechanical_0001.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.Tech sem-II Working Professionals Exam time table, June 2025(Mechanical)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.Tech_Sem-II_Working_Professional_Exam_time_table_june2025_EEE_0001.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.Tech Sem-II Working Professional Exam time table ,june2025 (EEE)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/II-IV_B.Tech_sem-II_Working_Professionals_Exam_Time_table_June_2025_Chemical_0001.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.Tech sem-II Working Professionals Exam Time table June 2025 (Chemical)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/Instant_Special_Drive_Examination_time_table_june_2025_A211_series_only_0001.pdf"
target="_blank">
<span class="dot">●</span> Instant Special Drive Examination time table June 2025 (A211 series only)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/3-1_B.Tech_-I_-Sem_Supplementary_Notification_circular_-_0001.pdf"
target="_blank">
<span class="dot">●</span> III-IV B.TECH I-SEM SUPPLEMENTARY EXAMS FEE NOTIFICATION & FEE PAYMENT INSTRUCTIONS
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/IV-IV_B.TECH_SEM-_I_SUPPLEMENTARY_NOTIFICATION_CIRCULAR_R-15R-19_R-20_0001.pdf"
target="_blank">
<span class="dot">●</span> IV-IV B.TECH SEM- I SUPPLEMENTARY NOTIFICATION CIRCULAR (R-15,R-19 ,R-20)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/SPECIAL_DRIVE_EXAMS_NOTIFICATION_A211_SERIES_REGULAR_1.pdf"
target="_blank">
<span class="dot">●</span> SPECIAL DRIVE EXAMS NOTIFICATION (A211 SERIES REGULAR)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/SUPPLEMENTARY_EXAMINATIONS_SCHEDULE_TENTATIVE.pdf"
target="_blank">
<span class="dot">●</span> SUPPLEMENTARY EXAMINATIONS SCHEDULE (TENTATIVE)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/education-verification_portal_link.pdf"
target="_blank">
<span class="dot">●</span> Education-Verification Portal link
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/IV-IV_B_ZHAJfMu.Tech_II-SEM_Regular_Exams_-_April-2025_R20_Results.pdf"
target="_blank">
<span class="dot">●</span> IV-IV_B.Tech_II-SEM_Regular_Exams_-_April-2025_R20_Results
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t7.pdf"
target="_blank">
<span class="dot">●</span> SPECIAL DRIVE EXAMINATION TIME TABLES-MARCH-2025 (I-I, II-I, II-II, III-I, III-II, IV-I, IV-II)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t6.pdf"
target="_blank">
<span class="dot">●</span> M.TECH I-SEM REGULAR & SUPPLEMENTARY & WORKING PROFESSIONALS EXAMINATIONS TIME TABLES-MARCH-2025 (R24,R23)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t5.pdf"
target="_blank">
<span class="dot">●</span> II-IV B.TECH II-SEM REGULAR & SUPPLEMENTARY EXAMINATIONS TIME TABLES-APRIL-MAY-2025 (R23,R20,R20.1,R19,R15,WP)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t4.pdf"
target="_blank">
<span class="dot">●</span> III-IV B.TECH II-SEM REGULAR & SUPPLEMENTARY EXAMINATIONS TIME TABLES-APRIL-MAY-2025 (R20,R20.1,R19,R15,WP)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t3.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.TECH II-SEM REGULAR & SUPPLEMENTARY EXAMINATIONS TIME TABLES-MAY-2025 (R23,R20.1,R20,R19,R15)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t2.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.Tech II-SEM Regular EXTERNAL LAB TIME TABLES-May-2025 (R23)
</a>
</li>
<li class="bulletin-item">
<a href="/media/circular/t1.pdf"
target="_blank">
<span class="dot">●</span> IV-IV B.TECH II-SEMESTER SUPPLEMENTARY EXAMINATIONS TIME TABLES-MAY-2025 (R15,R19)
</a>
</li>
<li class="bulletin-item">
<a href="/static/images/team/1.pdf"
target="_blank">
<span class="dot">●</span> I-IV B.TECH II-SEM SUPPLEMENTARY EXAMS FEE NOTIFICATION & FEE PAYMENT INSTRUCTIONS
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section card-container">
<div class="container">
<div class="text-center">
<h2 class="events-title">Our Top 5 Recruiters</h2>
</div>
<div class="section-header">
<p class="section-subtitle">We take pride in our partnerships with industry leaders who recognize
the talent and potential of our students. Our extensive network spans various sectors from
technology to healthcare and beyond.</p>
</div>
<!-- Top-tier recruiters grid -->
<div class="controls" style="display: none;">
<button id="toggleAutoFlip" class="control-btn">Stop Auto Flip</button>
<button id="resetCards" class="control-btn">Reset All Cards</button>
</div>
<div class="recruiters-grid">
<div class="recruiter-card" data-company="Capgemini">
<div class="card-inner">
<div class="card-front">
<img src="/static/images/capgemini.png" alt="Capgemini" class="recruiter-logo">
</div>
<div class="card-back">
<div class="package-info">
<h4 class="flip_header">Recruitment Packages</h4>
<ul>
<li>Entry-Level: ₹6 LPA</li>
<li>Mid-Level: ₹9 LPA</li>
<li>Senior-Level: ₹12 LPA</li>
</ul>
</div>
</div>
</div>
</div>
<div class="recruiter-card" data-company="Tech Mahindra">
<div class="card-inner">
<div class="card-front">
<img src="/static/images/techmahindra.png" alt="Tech Mahindra" class="recruiter-logo">
</div>
<div class="card-back">
<div class="package-info">
<h4 class="flip_header">Recruitment Packages</h4>
<ul>
<li>Entry-Level: ₹5.5 LPA</li>
<li>Mid-Level: ₹8.5 LPA</li>
<li>Senior-Level: ₹11 LPA</li>
</ul>
</div>
</div>
</div>
</div>
<div class="recruiter-card" data-company="Verizon">
<div class="card-inner">
<div class="card-front">
<img src="/static/images/verizon.png" alt="Verizon" class="recruiter-logo">
</div>
<div class="card-back">
<div class="package-info">
<h4 class="flip_header">Recruitment Packages</h4>
<ul>
<li>Entry-Level: ₹7 LPA</li>
<li>Mid-Level: ₹10 LPA</li>
<li>Senior-Level: ₹13 LPA</li>
</ul>
</div>
</div>
</div>
</div>
<div class="recruiter-card" data-company="Comtec">
<div class="card-inner">
<div class="card-front">
<img src="/static/images/comtec.png" alt="Comtec" class="recruiter-logo">
</div>
<div class="card-back">
<div class="package-info">
<h4 class="flip_header">Recruitment Packages</h4>
<ul>
<li>Entry-Level: ₹5 LPA</li>
<li>Mid-Level: ₹8 LPA</li>
<li>Senior-Level: ₹11 LPA</li>
</ul>
</div>
</div>
</div>
</div>
<div class="recruiter-card" data-company="Amazon">
<div class="card-inner">
<div class="card-front">
<img src="/static/images/amazon.png" alt="Amazon" class="recruiter-logo">
</div>
<div class="card-back">
<div class="package-info">
<h4 class="flip_header">Recruitment Packages</h4>
<ul>
<li>Entry-Level: ₹8 LPA</li>
<li>Mid-Level: ₹12 LPA</li>
<li>Senior-Level: ₹15 LPA</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const cards = document.querySelectorAll('.recruiter-card');
const toggleBtn = document.getElementById('toggleAutoFlip');
const resetBtn = document.getElementById('resetCards');
let autoFlipEnabled = true;
let currentCardIndex = 0;
let autoFlipInterval;
// Start auto flip
startAutoFlip();
// Toggle auto flip
toggleBtn.addEventListener('click', function() {
autoFlipEnabled = !autoFlipEnabled;
if (autoFlipEnabled) {
toggleBtn.textContent = 'Stop Auto Flip';
startAutoFlip();
} else {
toggleBtn.textContent = 'Start Auto Flip';
clearInterval(autoFlipInterval);
}
});
// Reset all cards
resetBtn.addEventListener('click', function() {
cards.forEach(card => {
card.classList.remove('flipped');
});
});
// Hover functionality
cards.forEach(card => {
card.addEventListener('mouseenter', function() {
if (!card.classList.contains('flipped')) {
card.classList.add('flipped');
}
});
card.addEventListener('mouseleave', function() {
if (!autoFlipEnabled || !isCurrentlyFlipped(card)) {
card.classList.remove('flipped');
}
});
// Click to flip functionality
card.addEventListener('click', function() {
card.classList.toggle('flipped');
});
});
function startAutoFlip() {
// Clear any existing interval
clearInterval(autoFlipInterval);
// Reset all cards
cards.forEach(card => {
card.classList.remove('flipped');
});
// Set new interval
autoFlipInterval = setInterval(function() {
// Remove flip from previous card
cards.forEach((card, index) => {
if (index !== currentCardIndex) {
card.classList.remove('flipped');
}
});
// Flip current card
cards[currentCardIndex].classList.add('flipped');
// Move to next card
currentCardIndex = (currentCardIndex + 1) % cards.length;
}, 2000);
}
function isCurrentlyFlipped(card) {
const index = Array.from(cards).indexOf(card);
return index === currentCardIndex;
}
});
</script>
<!-- Featured recruiters carousel -->
<div class="featured-recruiters">
<div class="text-center">
<h2 class="events-title">Our Partner Companies</h2>
</div>
<div class="carousel-track">
<!-- These logos will repeat for seamless scrolling -->
<div class="carousel-item">
<img src="/static/images/101.png"
alt="Capgemini" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/102.png"
alt="Tech Mahindra" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/103.jpg"
alt="Verizon" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/104.jpg"
alt="Comtec" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/105.png"
alt="Amazon" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/IBM.png" alt="IBM"
class="carousel-logo">
</div>
<!-- Duplicated for seamless scrolling -->
<div class="carousel-item">
<img src="/static/images/deloitteconsulting.png"
alt="Deloitte" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/infosys.png"
alt="Infosys" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/capgemini.png"
alt="Capgemini" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/techmahindra.png"
alt="Tech Mahindra" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/verizon.png"
alt="Verizon" class="carousel-logo">
</div>
<div class="carousel-item">
<img src="/static/images/comtec.png"
alt="Comtec" class="carousel-logo">
</div>
</div>
</div>
<!-- Stats section -->
<div class="stats-container">
<div class="stat-item">
<h3 class="stat-number">150</h3>
<p class="stat-text">Recruiting Partners</p>
</div>
<div class="stat-item">
<h3 class="stat-number">92</h3>
<p class="stat-text">Placement Rate</p>
</div>
<div class="stat-item">
<h3 class="stat-number">25</h3>
<p class="stat-text">Fortune 500 Companies</p>
</div>
<div class="stat-item">
<h3 class="stat-number">15</h3>
<p class="stat-text">International Recruiters</p>
</div>
</div>
</div>
<section>
<script>
// News Data
const newsData = [
{
id: 1,
image: "https://anits.edu.in/p4.jpeg",
title: "ANITS Hosts National Tech Conference",
category: "Event",
date: "February 15, 2025",
text: "Leading experts gather to discuss emerging technologies and innovations.",
link: "#"
},
{
id: 2,
image: "https://anits.edu.in/photogallery/24-Nov-2018-Sakshi.jpg",
title: "Students Win Regional Hackathon",
category: "Achievement",
date: "February 8, 2025",
text: "ANITS team secures first place in the prestigious coding competition.",
link: "#"
},
{
id: 4,
image: "https://anits.edu.in/p1.jpg",
title: "New Research Lab Inauguration",
category: "Infrastructure",
date: "January 15, 2025",
text: "State-of-the-art research facilities unveiled for advanced studies.",
link: "#"
},
{
id: 5,
image: "https://anits.edu.in/p2.jpeg",
title: "Faculty Research Published in International Journal",
category: "Research",
date: "December 20, 2024",
text: "Groundbreaking research by ANITS professors gains international recognition.",
link: "#"
},
{
id: 6,
image: "https://anits.edu.in/p4.jpeg",
title: "Annual Cultural Fest Announcement",
category: "Campus Life",
date: "December 10, 2024",
text: "Preparations begin for the most anticipated event of the academic year.",
link: "#"
},
{
id: 7,
image: "https://anits.edu.in/photogallery/24-Nov-2018-Sakshi.jpg",
title: "Industry Partnership Agreement Signed",
category: "Collaboration",
date: "November 30, 2024",
text: "ANITS partners with leading tech companies for student development programs.",
link: "#"
}
];
// Carousel Configuration
const cardsPerSlide = window.innerWidth < 768 ? 1 : 2;
let currentSlide = 0;
const totalSlides = Math.ceil(newsData.length / cardsPerSlide);
// Initialize Carousel
function initCarousel() {
renderSlides();
renderPagination();
setupEventListeners();
showSlide(currentSlide);
}
// Render News Cards
function renderSlides() {
const slidesContainer = document.getElementById('newsSlides');
slidesContainer.innerHTML = '';
newsData.forEach(news => {
const card = document.createElement('div');
card.className = 'col-md-6 news-card-wrapper';
card.innerHTML = `
<div class="news-card">
<div class="news-thumb">
<span class="news-category">${news.category}</span>
<img src="${news.image}" alt="${news.title}">
</div>
<div class="news-body">
<h5 class="news-title">${news.title}</h5>
<p class="news-date"><i class="far fa-calendar-alt me-2"></i>${news.date}</p>
<p class="news-text">${news.text}</p>
<a href="${news.link}" class="news-link">Read More <i class="fas fa-angle-right"></i></a>
</div>
</div>
`;
slidesContainer.appendChild(card);
});
}
// Render Pagination Dots
function renderPagination() {
const paginationContainer = document.getElementById('carouselPagination');
paginationContainer.innerHTML = '';
for (let i = 0; i < totalSlides; i++) {
const dot = document.createElement('div');
dot.className = 'carousel-dot';
dot.dataset.slide = i;
dot.addEventListener('click', () => {
showSlide(i);
});
paginationContainer.appendChild(dot);
}
}
// Show Specific Slide
function showSlide(slideIndex) {
const wrappers = document.querySelectorAll('.news-card-wrapper');
const dots = document.querySelectorAll('.carousel-dot');
// Hide all cards
wrappers.forEach(wrapper => {
wrapper.style.display = 'none';
});
// Show cards for current slide
const startIndex = slideIndex * cardsPerSlide;
const endIndex = Math.min(startIndex + cardsPerSlide, wrappers.length);
for (let i = startIndex; i < endIndex; i++) {
if (wrappers[i]) {
wrappers[i].style.display = 'block';
// Add animation with delay based on index
wrappers[i].classList.remove('animate-in');
void wrappers[i].offsetWidth; // Force reflow
wrappers[i].classList.add('animate-in');
wrappers[i].style.animationDelay = `${(i - startIndex) * 0.1}s`;
}
}
// Update pagination dots
dots.forEach((dot, index) => {
dot.classList.toggle('active', index === slideIndex);
});
currentSlide = slideIndex;
}
// Setup Event Listeners
function setupEventListeners() {
document.getElementById('prevSlide').addEventListener('click', () => {
if (currentSlide > 0) {
showSlide(currentSlide - 1);
} else {
showSlide(totalSlides - 1); // Loop to the end
}
});
document.getElementById('nextSlide').addEventListener('click', () => {
if (currentSlide < totalSlides - 1) {
showSlide(currentSlide + 1);
} else {
showSlide(0); // Loop to the beginning
}
});
// Auto-play functionality
let autoPlayInterval = setInterval(() => {
const nextSlide = (currentSlide + 1) % totalSlides;
showSlide(nextSlide);
}, 5000);
// Pause auto-play on hover
const carousel = document.querySelector('.news-carousel');
carousel.addEventListener('mouseenter', () => {
clearInterval(autoPlayInterval);
});
carousel.addEventListener('mouseleave', () => {
autoPlayInterval = setInterval(() => {
const nextSlide = (currentSlide + 1) % totalSlides;
showSlide(nextSlide);
}, 5000);
});
// Resize handler
window.addEventListener('resize', () => {
const newCardsPerSlide = window.innerWidth < 768 ? 1 : 3;
if (newCardsPerSlide !== cardsPerSlide) {
location.reload(); // Simple solution for this example
}
});
}
// Initialize when DOM is loaded
document.addEventListener('DOMContentLoaded', initCarousel);
</script>
</section>
</section>
<section style="margin-top:-90px;">
<div class="text-center">
<h2 class="events-title">Partners Across Industries</h2>
</div>
<div class="marquee-container">
<div class="marquee">
<div class="marquee-item">
<img src="/static/images/logos/101.png" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/102.png" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/103.jpg" alt="Verizon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/104.jpg" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/105.png" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/106.jpg" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images//logos/107.png" alt="Deloitte">
</div>
<div class="marquee-item">
<img src="/static/images//logos/108.png" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/109.png" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/110.jpg" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/112.avif" alt="Verizon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/113.png" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/114.png" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/115.jpg" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images//logos/116.jpg" alt="Deloitte">
</div>
<div class="marquee-item">
<img src="/static/images//logos/117.png" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/118.png" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/119.png" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/120.jpg" alt="Verizon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/121.png" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/122.png" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/123.png" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images//logos/124.webp" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/125.jpg" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/126.png" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/127.webp" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/128.jpg" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/129.jpg" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images/logos/130.png" alt="Deloitte">
</div>
<div class="marquee-item">
<img src="/static/images/logos/131.jpg" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/132.jpeg" alt="Deloitte">
</div>
<div class="marquee-item">
<img src="/static/images/logos/133.jpg" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/134.jpg" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/135.png" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/136.jpg" alt="Verizon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/137.png" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/log/138.webp" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/139.png" alt="Deloitte">
</div>
<div class="marquee-item">
<img src="/static/images/logos/140.png" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/141.png" alt="Verizon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/142.jpg" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/143.png" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/144.jpg" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images/logos/145.png" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/146.jpg" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/147.png" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/148.png" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/149.webp" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/150.jpg" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images/logos/151.png" alt="Amazon">
</div>
<div class="marquee-item">
<img src="/static/images/logos/152.png" alt="IBM">
</div>
<div class="marquee-item">
<img src="/static/images/logos/153.webp" alt="Infosys">
</div>
<div class="marquee-item">
<img src="/static/images/logos/154.jpg" alt="Capgemini">
</div>
<div class="marquee-item">
<img src="/static/images/logos/155.jpg" alt="Tech Mahindra">
</div>
<div class="marquee-item">
<img src="/static/images/logos/156.avif" alt="Comtec">
</div>
<div class="marquee-item">
<img src="/static/images/logos/157.png" alt="Amazon">
</div>
</div>
</div>
</section>
<section class="testimonial-section">
<div class="container">
<div class="text-center">
<h2 class="section-title">What Our Students Say</h2>
<div class="row g-4">
<!-- Testimonial 1: Suresh -->
<div class="col-md-6 col-lg-4">
<div class="testimonial-card">
<div class="testimonial-header">
<div class="avatar-container">
<img src="/api/placeholder/100/100" alt="Suresh" class="img-fluid">
</div>
</div>
<div class="testimonial-body">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="testimonial-text">"ANITS provided me with incredible opportunities in technical education. The faculty's expertise and industry connections helped me secure a placement at a top-tier company. The programming competitions and hackathons organized by the CSE department really boosted my practical skills."</p>
<h5 class="testimonial-name">Suresh Kumar</h5>
<p class="text-muted">Computer Science, Batch of 2023</p>
</div>
</div>
</div>
<!-- Testimonial 2: Neeha -->
<div class="col-md-6 col-lg-4">
<div class="testimonial-card">
<div class="testimonial-header">
<div class="avatar-container">
<img src="/api/placeholder/100/100" alt="Neeha" class="img-fluid">
</div>
</div>
<div class="testimonial-body">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="testimonial-text">"The Mechanical Engineering labs at ANITS are state-of-the-art! I particularly enjoyed the hands-on approach to learning. My research project was supported with excellent guidance and resources. The campus environment promotes both academic and personal growth. Truly grateful for my time here!"</p>
<h5 class="testimonial-name">Neeha Reddy</h5>
<p class="text-muted">Mechanical Engineering, Batch of 2022</p>
</div>
</div>
</div>
<!-- Testimonial 3: Praveen -->
<div class="col-md-6 col-lg-4">
<div class="testimonial-card">
<div class="testimonial-header">
<div class="avatar-container">
<img src="/api/placeholder/100/100" alt="Praveen" class="img-fluid">
</div>
</div>
<div class="testimonial-body">
<div class="stars">
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
<i class="fas fa-star"></i>
</div>
<p class="testimonial-text">"The ECE department at ANITS stands out with its exceptional curriculum and lab facilities. The robotics club gave me a platform to apply my theoretical knowledge. The professors always encouraged innovative thinking and problem-solving. It's beyond just an engineering college - it's a launchpad for careers."</p>
<h5 class="testimonial-name">Praveen Kumar</h5>
<p class="text-muted">Electronics & Communication, Batch of 2024</p>
</div>
</div>
</div>
<!-- Testimonial 4: Shiva Shankar -->
<!--<div class="col-md-6 col-lg-6">-->
<!-- <div class="testimonial-card">-->
<!-- <div class="testimonial-header">-->
<!-- <div class="avatar-container">-->
<!-- <img src="/api/placeholder/100/100" alt="Shiva Shankar" class="img-fluid">-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial-body">-->
<!-- <div class="stars">-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- </div>-->
<!-- <p class="testimonial-text">"Coming from a small town, ANITS gave me the perfect blend of cultural diversity and academic excellence. The Civil Engineering department is renowned for its practical approach. The annual technical fest and guest lectures by industry experts were incredibly valuable. The campus infrastructure is beautiful and conducive to learning."</p>-->
<!-- <h5 class="testimonial-name">Shiva Shankar</h5>-->
<!-- <p class="text-muted">Civil Engineering, Batch of 2021</p>-->
<!-- </div>-->
<!-- </div>-->
<!--</div>-->
<!-- Testimonial 5: Anitha -->
<!--<div class="col-md-6 col-lg-6">-->
<!-- <div class="testimonial-card">-->
<!-- <div class="testimonial-header">-->
<!-- <div class="avatar-container">-->
<!-- <img src="/api/placeholder/100/100" alt="Anitha" class="img-fluid">-->
<!-- </div>-->
<!-- </div>-->
<!-- <div class="testimonial-body">-->
<!-- <div class="stars">-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- <i class="fas fa-star"></i>-->
<!-- </div>-->
<!-- <p class="testimonial-text">"ANITS has a fantastic IT department with cutting-edge facilities. The college's focus on developing both technical and soft skills helped me immensely. The placement cell provided excellent guidance throughout our career development. The Women in Tech initiatives were particularly empowering. I'm proud to be an ANITS alumna!"</p>-->
<!-- <h5 class="testimonial-name">Anitha Sharma</h5>-->
<!-- <p class="text-muted">Information Technology, Batch of 2023</p>-->
<!-- </div>-->
<!-- </div>-->
<!--</div>-->
</div>
</div>
</div>
</section>
</section>
<!--footer end-->
</div>
<div class="modal fade" id="myModal">
<div class="modal-dialog modal modal-dialog-centered" role="document">
<div class="modal-content">
<div class="modal-body" style="padding: 10px">
<div class="row">
<div class="col-sm-12">
<img src="/static/images/ANIDS_Admissions.jpg" style="max-width: 100%" class="img-fluid"/>
</div>
</div>
<div style="padding: 5px ; text-align: center;">
<button type="button" class="close btn"> CLOSE</button>
</div>
</div>
</div>
</div>
</div>
<div class="modal fade" id="eventModal" tabindex="-1" aria-labelledby="eventModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="eventModalLabel">Event Details</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<h3 id="modal-event-name"></h3>
<p><strong>Date:</strong> <span id="modal-event-date"></span></p>
<p><strong>Description:</strong> <span id="modal-event-description"></span></p>
<h5>Gallery</h5>
<div id="modal-gallery" class="d-flex flex-wrap gap-2"></div>
</div>
</div>
</div>
</div>
<!-- Large Image Modal -->
<div class="modal fade" id="imageModal" tabindex="-1" aria-labelledby="imageModalLabel" aria-hidden="true">
<div class="modal-dialog modal-xl modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Image Preview</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body text-center">
<img id="largeImage" src="" class="img-fluid rounded shadow-lg" style="max-width: 100%; max-height: 80vh;">
</div>
</div>
</div>
</div>
<div class="modal fade" id="videoModal" tabindex="-1" aria-labelledby="videoModalLabel" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="floating-elements">
<div class="floating-circle"></div>
<div class="floating-circle"></div>
<div class="floating-circle"></div>
</div>
<div class="modal-header">
<h2 class="modal-title" id="videoModalLabel">
<i class="fas fa-play-circle me-2"></i>
Discover Our Story
</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
<i class="fas fa-times text-white"></i>
</button>
</div>
<div class="modal-body">
<div class="video-container">
<iframe
src="https://www.youtube.com/embed/LGzFBhVqQ20?si=wgBmE8uV9cryJRHK&autoplay=1&mute=1&loop=1&playlist=LGzFBhVqQ20"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="form-container">
<h3 class="form-title">
<i class="fas fa-download me-2"></i>
Get Your Free Brochure
</h3>
<form id="brochureForm">
<input type="hidden" name="csrfmiddlewaretoken" value="HL86EW8TmmPqESIQ6j9N3SuZ1MA5HgsHGRDHAQeQqSQIyLqDiSrybnWuhkADDoOd">
<div class="form-group">
<i class="fas fa-user input-icon"></i>
<input type="text" class="form-control" id="fullName" name="fullName" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<i class="fas fa-phone input-icon"></i>
<input type="tel" class="form-control" id="phoneNumber" name="phoneNumber" pattern="[0-9]+" title="Please enter only numbers" placeholder="Enter your phone number" required>
</div>
<div class="form-group">
<i class="fas fa-envelope input-icon"></i>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter your email address" required>
</div>
<div class="g-recaptcha mb-4" data-sitekey="6LfBTUYrAAAAAK3vMjDXs2P89SWo4I5lkxuuTbYl"></div>
<button type="submit" class="download-btn">
<i class="fas fa-download me-2"></i>
Download Brochure Now
</button>
<div class="success-message" id="successMessage">
<i class="fas fa-check-circle me-2"></i>
Thank you! Your brochure download will begin shortly.
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- page wrapper end -->
<!--back-to-top start-->
<div class="scroll-top"><a class="smoothscroll" href="#top"><i class="las la-location-arrow"></i></a></div>
<!--back-to-top end-->
<!-- inject js start -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<!-- Owl Carousel JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/owl.carousel.min.js"></script>
<!-- Owl Carousel CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css">
<!--== jquery -->
<style>
.modal-backdrop {
background: rgba(0, 0, 0, 0.8);
backdrop-filter: blur(10px);
}
.modal-content {
background: linear-gradient(145deg, #ffffff, #f8f9ff);
border: none;
border-radius: 20px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
overflow: hidden;
position: relative;
}
.modal-content::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(90deg, #ff6b6b, #4ecdc4, #45b7d1, #96ceb4, #feca57);
background-size: 300% 300%;
animation: gradientShift 3s ease infinite;
}
@keyframes gradientShift {
0%, 100% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
}
.modal-header {
border-bottom: none;
padding: 2rem 2rem 1rem;
position: relative;
}
.modal-title {
font-weight: 700;
font-size: 1.8rem;
background: linear-gradient(45deg, #667eea, #764ba2);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
margin: 0;
animation: titlePulse 2s ease-in-out infinite alternate;
}
@keyframes titlePulse {
from { transform: scale(1); }
to { transform: scale(1.05); }
}
.btn-close {
background: linear-gradient(45deg, #ff6b6b, #ee5a24);
border-radius: 50%;
width: 40px;
height: 40px;
opacity: 1;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}
.btn-close:hover {
transform: rotate(90deg) scale(1.1);
background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}
.modal-body {
padding: 1rem 2rem 2rem;
}
.video-container {
position: relative;
margin-bottom: 2rem;
border-radius: 15px;
overflow: hidden;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
animation: videoFloat 6s ease-in-out infinite;
}
@keyframes videoFloat {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.video-container iframe {
width: 100%;
height: 315px;
border: none;
}
.form-container {
background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
border-radius: 20px;
padding: 2rem;
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
position: relative;
overflow: hidden;
}
.form-container::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
animation: shimmer 3s infinite;
pointer-events: none;
}
@keyframes shimmer {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.form-title {
text-align: center;
margin-bottom: 1.5rem;
font-weight: 600;
color: #333;
position: relative;
}
.form-group {
margin-bottom: 1.5rem;
position: relative;
}
.form-control {
border: 2px solid transparent;
border-radius: 15px;
padding: 12px 20px 12px 50px;
font-size: 1rem;
background: rgba(255, 255, 255, 0.9);
backdrop-filter: blur(5px);
transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
}
.form-control:focus {
border-color: #667eea;
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
background: rgba(255, 255, 255, 1);
transform: translateY(-2px);
}
.input-icon {
position: absolute;
left: 18px;
top: 50%;
transform: translateY(-50%);
color: #667eea;
font-size: 1.1rem;
z-index: 2;
transition: all 0.3s ease;
}
.form-group:focus-within .input-icon {
color: #764ba2;
transform: translateY(-50%) scale(1.1);
}
.download-btn {
background: linear-gradient(45deg, #667eea, #764ba2);
border: none;
border-radius: 50px;
padding: 15px 40px;
font-weight: 600;
font-size: 1.1rem;
color: white;
width: 100%;
position: relative;
overflow: hidden;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
}
.download-btn::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
transition: all 0.5s ease;
}
.download-btn:hover::before {
left: 100%;
}
.download-btn:hover {
transform: translateY(-3px);
box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
background: linear-gradient(45deg, #764ba2, #667eea);
}
.download-btn:active {
transform: translateY(-1px);
}
.floating-elements {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
overflow: hidden;
}
.floating-circle {
position: absolute;
border-radius: 50%;
background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
animation: float 6s ease-in-out infinite;
}
.floating-circle:nth-child(1) {
width: 60px;
height: 60px;
top: 20%;
left: 10%;
animation-delay: 0s;
}
.floating-circle:nth-child(2) {
width: 40px;
height: 40px;
top: 60%;
right: 15%;
animation-delay: 2s;
}
.floating-circle:nth-child(3) {
width: 30px;
height: 30px;
bottom: 30%;
left: 20%;
animation-delay: 4s;
}
@keyframes float {
0%, 100% {
transform: translateY(0px) rotate(0deg);
opacity: 0.7;
}
50% {
transform: translateY(-20px) rotate(180deg);
opacity: 1;
}
}
.modal.show .modal-dialog {
animation: modalSlideIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes modalSlideIn {
from {
opacity: 0;
transform: scale(0.7) translateY(-50px);
}
to {
opacity: 1;
transform: scale(1) translateY(0);
}
}
.form-control.animate {
animation: inputPop 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes inputPop {
0% { transform: scale(1); }
50% { transform: scale(1.05); }
100% { transform: scale(1); }
}
.success-message {
display: none;
text-align: center;
padding: 1rem;
background: linear-gradient(45deg, #4ecdc4, #44a08d);
color: white;
border-radius: 15px;
margin-top: 1rem;
animation: successSlide 0.5s ease;
}
@keyframes successSlide {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@media (max-width: 768px) {
.modal-dialog {
margin: 1rem;
}
.modal-title {
font-size: 1.5rem;
}
.video-container iframe {
height: 250px;
}
.form-container {
padding: 1.5rem;
}
}
</style>
<script src="/static/js/theme.js"></script>
<!--== theme-plugin -->
<script src="/static/js/theme-plugin.js"></script>
<!--== theme-script -->
<script src="/static/js/theme-script.js"></script>
<!-- inject js end -->
<script>
$(document).ready(function () {
// Initialize Owl Carousel
$('.owl-carousel').owlCarousel({
loop: true,
margin: 20,
nav: true,
dots: true,
autoplay: true,
autoplayTimeout: 3000,
autoplayHoverPause: true,
navText: ['<span>❮</span>', '<span>❯</span>'],
responsive: {
0: {
items: 1
},
600: {
items: 2
},
900: {
items: 3
},
1200: {
items: 4
}
},
// Add animation to items when scrolled into view
onInitialized: startAnimation,
onTranslated: startAnimation
});
function startAnimation(event) {
var currentItems = $('.owl-item.active').find('.link-card');
currentItems.each(function (index) {
var item = $(this);
item.removeClass('animated fadeInUp');
setTimeout(function () {
item.addClass('animated fadeInUp');
}, index * 150);
});
}
});
</script>
<script>
// News Data
const newsData = [
{
id: 1,
image: "p1.jpg",
title: "ANITS Hosts National Tech Conference",
category: "Event",
date: "February 15, 2025",
text: "Leading experts gather to discuss emerging technologies and innovations.",
link: "#"
},
{
id: 2,
image: "p2.jpeg",
title: "Students Win Regional Hackathon",
category: "Achievement",
date: "February 8, 2025",
text: "ANITS team secures first place in the prestigious coding competition.",
link: "#"
},
{
id: 3,
image: "p3.jpg",
title: "Campus Placement Drive Success",
category: "Placements",
date: "January 28, 2025",
text: "Over 85% of eligible students received job offers from top companies.",
link: "#"
},
{
id: 4,
image: "p4.jpeg",
title: "New Research Lab Inauguration",
category: "Infrastructure",
date: "January 15, 2025",
text: "State-of-the-art research facilities unveiled for advanced studies.",
link: "#"
},
{
id: 5,
image: "/api/placeholder/400/320",
title: "Faculty Research Published in International Journal",
category: "Research",
date: "December 20, 2024",
text: "Groundbreaking research by ANITS professors gains international recognition.",
link: "#"
},
{
id: 6,
image: "/api/placeholder/400/320",
title: "Annual Cultural Fest Announcement",
category: "Campus Life",
date: "December 10, 2024",
text: "Preparations begin for the most anticipated event of the academic year.",
link: "#"
},
{
id: 7,
image: "/api/placeholder/400/320",
title: "Industry Partnership Agreement Signed",
category: "Collaboration",
date: "November 30, 2024",
text: "ANITS partners with leading tech companies for student development programs.",
link: "#"
}
];
// Carousel Configuration
const cardsPerSlide = window.innerWidth < 768 ? 1 : 3;
let currentSlide = 0;
const totalSlides = Math.ceil(newsData.length / cardsPerSlide);
// Initialize Carousel
function initCarousel() {
renderSlides();
renderPagination();
setupEventListeners();
showSlide(currentSlide);
}
// Render News Cards
function renderSlides() {
const slidesContainer = document.getElementById('newsSlides');
slidesContainer.innerHTML = '';
newsData.forEach(news => {
const card = document.createElement('div');
card.className = 'col-md-4 news-card-wrapper';
card.innerHTML = `
<div class="news-card">
<div class="news-thumb">
<span class="news-category">${news.category}</span>
<img src="${news.image}" alt="${news.title}">
</div>
<div class="news-body">
<h5 class="news-title">${news.title}</h5>
<p class="news-date"><i class="far fa-calendar-alt me-2"></i>${news.date}</p>
<p class="news-text">${news.text}</p>
<a href="${news.link}" class="news-link">Read More <i class="fas fa-angle-right"></i></a>
</div>
</div>
`;
slidesContainer.appendChild(card);
});
}
// Render Pagination Dots
function renderPagination() {
const paginationContainer = document.getElementById('carouselPagination');
paginationContainer.innerHTML = '';
for (let i = 0; i < totalSlides; i++) {
const dot = document.createElement('div');
dot.className = 'carousel-dot';
dot.dataset.slide = i;
dot.addEventListener('click', () => {
showSlide(i);
});
paginationContainer.appendChild(dot);
}
}
// Show Specific Slide
function showSlide(slideIndex) {
const wrappers = document.querySelectorAll('.news-card-wrapper');
const dots = document.querySelectorAll('.carousel-dot');
// Hide all cards
wrappers.forEach(wrapper => {
wrapper.style.display = 'none';
});
// Show cards for current slide
const startIndex = slideIndex * cardsPerSlide;
const endIndex = Math.min(startIndex + cardsPerSlide, wrappers.length);
for (let i = startIndex; i < endIndex; i++) {
if (wrappers[i]) {
wrappers[i].style.display = 'block';
// Add animation with delay based on index
wrappers[i].classList.remove('animate-in');
void wrappers[i].offsetWidth; // Force reflow
wrappers[i].classList.add('animate-in');
wrappers[i].style.animationDelay = `${(i - startIndex) * 0.1}s`;
}
}
// Update pagination dots
dots.forEach((dot, index) => {
dot.classList.toggle('active', index === slideIndex);
});
currentSlide = slideIndex;
}
// Setup Event Listeners
function setupEventListeners() {
document.getElementById('prevSlide').addEventListener('click', () => {
if (currentSlide > 0) {
showSlide(currentSlide - 1);
} else {
showSlide(totalSlides - 1); // Loop to the end
}
});
document.getElementById('nextSlide').addEventListener('click', () => {
if (currentSlide < totalSlides - 1) {
showSlide(currentSlide + 1);
} else {
showSlide(0); // Loop to the beginning
}
});
// Auto-play functionality
let autoPlayInterval = setInterval(() => {
const nextSlide = (currentSlide + 1) % totalSlides;
showSlide(nextSlide);
}, 5000);
// Pause auto-play on hover
const carousel = document.querySelector('.news-carousel');
carousel.addEventListener('mouseenter', () => {
clearInterval(autoPlayInterval);
});
carousel.addEventListener('mouseleave', () => {
autoPlayInterval = setInterval(() => {
const nextSlide = (currentSlide + 1) % totalSlides;
showSlide(nextSlide);
}, 5000);
});
// Resize handler
window.addEventListener('resize', () => {
const newCardsPerSlide = window.innerWidth < 768 ? 1 : 3;
if (newCardsPerSlide !== cardsPerSlide) {
location.reload(); // Simple solution for this example
}
});
}
// Initialize when DOM is loaded
document.addEventListener('DOMContentLoaded', initCarousel);
</script>
<script>
document.addEventListener('DOMContentLoaded', function () {
const pauseBtn = document.getElementById('pauseBtn');
const playBtn = document.getElementById('playBtn');
const marqueeContent = document.getElementById('marqueeContent');
pauseBtn.addEventListener('click', function () {
marqueeContent.style.animationPlayState = 'paused';
pauseBtn.style.display = 'none';
playBtn.style.display = 'inline-block';
});
playBtn.addEventListener('click', function () {
marqueeContent.style.animationPlayState = 'running';
playBtn.style.display = 'none';
pauseBtn.style.display = 'inline-block';
});
});
</script>
<script>
function hide() {
document.getElementById("dip").style.display = "none";
}
document.addEventListener("DOMContentLoaded", () => {
const cards = document.querySelectorAll(".counter-cards__item");
cards.forEach((card, index) => {
card.style.animation = `fadeInCard 1s ease-in-out ${index * 0.2}s forwards`;
});
});
document.addEventListener("DOMContentLoaded", () => {
const marquee = document.querySelector(".marquee");
const items = marquee.innerHTML; // Get current items
marquee.innerHTML += items; // Duplicate items for seamless scrolling
});
$(document).ready(function () {
$('.event-item').click(function () {
let eventId = $(this).data('id');
// Show loading state
$('#modal-event-name').text('Loading...');
$('#modal-event-date').text('');
$('#modal-event-description').text('');
$('#modal-gallery').html('<p class="text-muted">Loading gallery...</p>');
$.ajax({
url: '/get_event_details',
method: 'GET',
data: { id: eventId },
dataType: 'json',
success: function (data) {
$('#modal-event-name').text(data.event_name);
$('#modal-event-date').text(data.event_date);
let description = data.description || 'No description available.';
let html;
if (description.includes('http')) {
// Convert URL in text to anchor tag
html = description.replace(
/(https?:\/\/[^\s]+)/g,
'<a href="$1" target="_blank" style="color:blue;">$1</a>'
);
$('#modal-event-description').html(html);
} else {
$('#modal-event-description').text(description);
}
let galleryHtml = '';
if (data.gallery.length > 0) {
data.gallery.forEach(image => {
galleryHtml += `
<img src="${image}" class="img-thumbnail event-image me-2 mb-2" width="200" height="200"
style="cursor: pointer;">
`;
});
} else {
galleryHtml = '<p class="text-muted">No images available.</p>';
}w
$('#modal-gallery').html(galleryHtml);
},
error: function () {
$('#modal-event-name').text('Error loading event details');
$('#modal-event-date').text('');
$('#modal-event-description').text('');
$('#modal-gallery').html('<p class="text-danger">Failed to load gallery.</p>');
}
});
});
// Handle image click to show in larger view
$(document).on('click', '.event-image', function () {
let imageUrl = $(this).attr('src');
$('#largeImage').attr('src', imageUrl);
$('#imageModal').modal('show'); // Show the Bootstrap modal
});
});
</script>
<script>
// Show modal when page loads
document.addEventListener('DOMContentLoaded', function() {
const modal = new bootstrap.Modal(document.getElementById('videoModal'));
modal.show();
});
// Form animation and handling
document.addEventListener('DOMContentLoaded', function() {
const form = document.getElementById('brochureForm');
const inputs = document.querySelectorAll('.form-control');
const successMessage = document.getElementById('successMessage');
// Add focus animations to inputs
inputs.forEach(input => {
input.addEventListener('focus', function() {
this.classList.add('animate');
setTimeout(() => {
this.classList.remove('animate');
}, 300);
});
});
// Phone number validation - only allow numbers
const phoneInput = document.getElementById('phoneNumber');
phoneInput.addEventListener('input', function(e) {
// Remove any non-numeric characters
this.value = this.value.replace(/[^0-9]/g, '');
});
phoneInput.addEventListener('keypress', function(e) {
// Only allow numbers and specific keys (backspace, delete, arrows)
const allowedKeys = ['Backspace', 'Delete', 'ArrowLeft', 'ArrowRight', 'Tab'];
if (!allowedKeys.includes(e.key) && (e.key < '0' || e.key > '9')) {
e.preventDefault();
}
});
// Form submission with Django AJAX
form.addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(form);
// Get CSRF token
const csrfToken = document.querySelector('[name=csrfmiddlewaretoken]')?.value ||
document.querySelector('meta[name="csrf-token"]')?.getAttribute('content') ||
getCookie('csrftoken');
// Simulate form processing
const submitBtn = form.querySelector('.download-btn');
const originalText = submitBtn.innerHTML;
submitBtn.innerHTML = '<i class="fas fa-spinner fa-spin me-2"></i>Processing...';
submitBtn.disabled = true;
// AJAX request to Django view
fetch('/user_info', {
method: 'POST',
body: formData,
headers: {
'X-CSRFToken': csrfToken,
'X-Requested-With': 'XMLHttpRequest'
}
})
.then(response => response.json())
.then(data => {
if (data.success) {
// Show success message
successMessage.style.display = 'block';
// Reset button
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
// Download the actual brochure PDF
setTimeout(() => {
const link = document.createElement('a');
link.href = '/static/brocher.pdf';
link.download = 'brochure.pdf';
link.target = '_blank';
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
// Hide success message after download
setTimeout(() => {
successMessage.style.display = 'none';
form.reset();
}, 3000);
}, 1000);
} else {
// Handle errors
alert(data.message || 'An error occurred. Please try again.');
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
}
})
.catch(error => {
console.error('Error:', error);
alert('Network error. Please check your connection and try again.');
submitBtn.innerHTML = originalText;
submitBtn.disabled = false;
});
});
// Function to get CSRF cookie
function getCookie(name) {
let cookieValue = null;
if (document.cookie && document.cookie !== '') {
const cookies = document.cookie.split(';');
for (let i = 0; i < cookies.length; i++) {
const cookie = cookies[i].trim();
if (cookie.substring(0, name.length + 1) === (name + '=')) {
cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
break;
}
}
}
return cookieValue;
}
});
// Add some interactive particles effect
document.addEventListener('mousemove', function(e) {
const particle = document.createElement('div');
particle.style.position = 'fixed';
particle.style.width = '4px';
particle.style.height = '4px';
particle.style.backgroundColor = 'rgba(102, 126, 234, 0.6)';
particle.style.borderRadius = '50%';
particle.style.pointerEvents = 'none';
particle.style.zIndex = '9999';
particle.style.left = e.clientX + 'px';
particle.style.top = e.clientY + 'px';
document.body.appendChild(particle);
setTimeout(() => {
particle.style.transition = 'all 1s ease-out';
particle.style.transform = 'scale(0)';
particle.style.opacity = '0';
setTimeout(() => {
document.body.removeChild(particle);
}, 1000);
}, 100);
});
</script>
<div class="modal fade" id="videoModal" tabindex="-1" aria-labelledby="videoModalLabel" aria-hidden="true" data-bs-backdrop="static">
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="floating-elements">
<div class="floating-circle"></div>
<div class="floating-circle"></div>
<div class="floating-circle"></div>
</div>
<div class="modal-header">
<h2 class="modal-title" id="videoModalLabel">
<i class="fas fa-play-circle me-2"></i>
Discover Our Story
</h2>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close">
<i class="fas fa-times text-white"></i>
</button>
</div>
<div class="modal-body">
<div class="video-container">
<iframe
src="https://www.youtube.com/embed/LGzFBhVqQ20?si=wgBmE8uV9cryJRHK&autoplay=1&mute=1&loop=1&playlist=LGzFBhVqQ20"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="form-container">
<h3 class="form-title">
<i class="fas fa-download me-2"></i>
Get Your Free Brochure
</h3>
<form id="brochureForm">
<input type="hidden" name="csrfmiddlewaretoken" value="HL86EW8TmmPqESIQ6j9N3SuZ1MA5HgsHGRDHAQeQqSQIyLqDiSrybnWuhkADDoOd">
<div class="form-group">
<i class="fas fa-user input-icon"></i>
<input type="text" class="form-control" id="fullName" name="fullName" placeholder="Enter your full name" required>
</div>
<div class="form-group">
<i class="fas fa-phone input-icon"></i>
<input type="tel" class="form-control" id="phoneNumber" name="phoneNumber" pattern="[0-9]+" title="Please enter only numbers" placeholder="Enter your phone number" required>
</div>
<div class="form-group">
<i class="fas fa-envelope input-icon"></i>
<input type="email" class="form-control" id="email" name="email" placeholder="Enter your email address" required>
</div>
<div class="g-recaptcha mb-4" data-sitekey="6LfBTUYrAAAAAK3vMjDXs2P89SWo4I5lkxuuTbYl"></div>
<button type="submit" class="download-btn">
<i class="fas fa-download me-2"></i>
Download Brochure Now
</button>
<div class="success-message" id="successMessage">
<i class="fas fa-check-circle me-2"></i>
Thank you! Your brochure download will begin shortly.
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<footer class="footer" style="background: linear-gradient(135deg, #1b3965, #3088c7); color: white;">
<div class="primary-footer py-5">
<div class="container">
<div class="row">
<!-- Vital Links Column -->
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h4 class="text-white mb-4">Vital Links</h4>
<div class="footer-list">
<ul class="list-unstyled">
<!--<li class="mb-2">-->
<!-- <a href="http://onlinesystem.anits.edu.in/" target="_blank" class="text-white hover-effect">-->
<!-- <i class="fas fa-link me-2"></i> Online Enrollment-->
<!-- </a>-->
<!--</li>-->
<li class="mb-2">
<a href="#" target="_blank" class="text-white hover-effect">
<i class="fas fa-graduation-cap me-2"></i> CAT-B Admissions
</a>
</li>
<li class="mb-2">
<a href="/onlinepayment" target="_blank" class="text-white hover-effect">
<i class="fas fa-credit-card me-2"></i> Online Payment
</a>
</li>
<li class="mb-2">
<a href="/nirf" target="_blank" class="text-white hover-effect">
<i class="fas fa-medal me-2"></i> NIRF
</a>
</li>
<li class="mb-2">
<a href="/nba" target="_blank" class="text-white hover-effect">
<i class="fas fa-search me-2"></i> NBA
</a>
</li>
</ul>
</div>
</div>
<!-- Quick Links Column -->
<div class="col-lg-3 col-md-6 mb-4 mb-md-0">
<h4 class="text-white mb-4">Quick Links</h4>
<div class="footer-list">
<ul class="list-unstyled">
<li class="mb-2">
<a href="/Ariia" target="_blank" class="text-white hover-effect">
<i class="fas fa-lightbulb me-2"></i> ARIIA
</a>
</li>
<li class="mb-2">
<a href="/antiragging" target="_blank" class="text-white hover-effect">
<i class="fas fa-ban me-2"></i> Anti Ragging
</a>
</li>
<li class="mb-2">
<a href="/greviance" target="_blank" class="text-white hover-effect">
<i class="fas fa-comments me-2"></i> Grievance
</a>
</li>
<li class="mb-2">
<a href="/pbas" target="_blank" class="text-white hover-effect">
<i class="fas fa-bell me-2"></i> PBAS
</a>
</li>
<!--<li class="mb-2">-->
<!-- <a href="/https://www.anits.edu.in/newsletters.php" target="_blank" class="text-white hover-effect">-->
<!-- <i class="fas fa-newspaper me-2"></i> News Letters-->
<!-- </a>-->
<!--</li>-->
</ul>
</div>
</div>
<!-- Contact Column -->
<div class="col-lg-6 col-md-12">
<h4 class="text-white mb-4">Get In Touch</h4>
<div class="footer-contact">
<div class="d-flex mb-3">
<i class="fas fa-map-marker-alt me-3 mt-1 text-danger"></i>
<p class="mb-0">
Anil Neerukonda Institute of Technology & Sciences,<br>
Sangivalasa, Bheemunipatnam Mandal,<br>
Visakhapatnam Dist, AP, India
</p>
</div>
<div class="d-flex mb-3">
<i class="fas fa-phone-alt me-3 text-primary"></i>
<p class="mb-0"> 8712005999, 8712008222, 9154220250 (Admissions)</p>
</div>
<div class="d-flex mb-3">
<i class="fas fa-envelope me-3 text-warning"></i>
<p class="mb-0">principal@anits.edu.in</p>
</div>
<!-- Social Media Links -->
<div class="social-icons mt-4">
<a href="#" class="text-white me-3"><i class="fab fa-facebook-f fa-lg"></i></a>
<a href="#" class="text-white me-3"><i class="fab fa-twitter fa-lg"></i></a>
<a href="#" class="text-white me-3"><i class="fab fa-instagram fa-lg"></i></a>
<a href="#" class="text-white me-3"><i class="fab fa-linkedin-in fa-lg"></i></a>
<a href="#" class="text-white"><i class="fab fa-youtube fa-lg"></i></a>
</div>
</div>
</div>
</div>
<!-- Copyright Row -->
<div class="row mt-5 pt-3 border-top border-light">
<div class="col-md-6 text-center text-md-start">
<p class="mb-0">© 2025 Anil Neerukonda Institute of Technology & Sciences. All rights reserved.</p>
</div>
<div class="col-md-6 text-center text-md-end">
<a href="#" class="text-white me-3">Privacy Policy</a>
<a href="#" class="text-white me-3">Terms of Service</a>
<a href="#" class="text-white">Sitemap</a>
</div>
</div>
</div>
</div>
</footer>
<!-- Font Awesome for icons -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
<!-- Custom CSS -->
<style>
.hover-effect {
transition: all 0.3s ease;
display: inline-block;
}
.hover-effect:hover {
color: #f8f9fa !important;
transform: translateX(5px);
text-decoration: none;
}
.social-icons a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background: rgba(255,255,255,0.1);
transition: all 0.3s ease;
margin-right: 10px;
}
.social-icons a:hover {
background: rgba(255,255,255,0.2);
transform: translateY(-3px);
}
</style>
</div>
</body>
<style>
.btn:hover {
color: #fff
}
</style>
</html>