*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, sans-serif;
scroll-behavior:smooth;
}

body{
background:#f4f6f9;
overflow-x:hidden;
}

/* Navbar */
.navbar{
position:fixed;
top:0;
left:0;
width:100%;
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 60px;
background:#002147;
z-index:1000;
box-shadow:0 3px 10px rgba(0,0,0,0.2);

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
box-sizing:border-box;
}


.logo{
    font-size:36px;
    font-weight:700;
    white-space:nowrap;
}

.nav-links{
display:flex;
list-style:none;
}

.nav-links li{
margin-left:30px;
}

.nav-links a{
text-decoration:none;
color:white;
font-size:18px;
font-weight:bold;
transition:0.3s;
}

.nav-links a:hover{
color:#FFD700;
}

/* Hero Section */
.hero{
    height:75vh;
    background:
    linear-gradient(rgba(0,0,0,0.45),
    rgba(0,0,0,0.45)),
    url('college-bg.jpg');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content h1{
font-size:65px;
max-width:1000px;
line-height:1.2;
margin-bottom:20px;
}

.hero-content p{
font-size:28px;
margin-bottom:30px;
}

.btn{
background:#FFD700;
padding:16px 35px;
border-radius:10px;
text-decoration:none;
color:black;
font-size:22px;
font-weight:bold;
transition:0.3s;
}

.btn:hover{
background:white;
transform:scale(1.05);
}

/* Stats */
.stats{
display:flex;
justify-content:center;
gap:30px;
padding:80px 40px;
flex-wrap:wrap;
background:white;
}

.stat-box{
background:#002147;
color:white;
padding:40px;
width:250px;
border-radius:15px;
text-align:center;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.stat-box:hover{
transform:translateY(-10px);
}

.stat-box h2{
font-size:45px;
color:#FFD700;
}

.stat-box p{
font-size:22px;
margin-top:10px;
}

/* Features */
.features{
display:flex;
justify-content:center;
gap:30px;
padding:80px 40px;
flex-wrap:wrap;
}

.card{
background:white;
padding:40px;
width:320px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
transition:0.3s;
}

.card:hover{
transform:translateY(-10px);
}

.card i{
font-size:50px;
color:#002147;
margin-bottom:20px;
}

.card h3{
font-size:28px;
margin-bottom:15px;
color:#002147;
}

.card p{
font-size:18px;
}

.courses-section{
padding:80px 50px;
text-align:center;
background:#eef2f7;
}

.courses-section h1{
font-size:45px;
margin-bottom:40px;
color:#002147;
}

.course-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
align-items:flex-start;
}

.course-card{
background:white;
width:450px;
padding:35px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
transition:.3s;
text-align:left;
}

.course-card:hover{
transform:translateY(-5px);
}

.course-card h2{
font-size:32px;
color:#002147;
text-align:center;
margin-bottom:20px;
}

.course-card ul{
padding-left:20px;
margin:0;
}

.course-card li{
font-size:18px;
line-height:1.8;
color:#444;
margin-bottom:8px;
}

/* Principal */
.principal{
padding:80px;
background:#002147;
color:white;
text-align:center;
}

.principal h1{
font-size:45px;
margin-bottom:20px;
}

.principal p{
font-size:22px;
max-width:900px;
margin:auto;
line-height:1.8;
}

/* Gallery */
.gallery{
padding:80px 50px;
text-align:center;
}

.gallery h1{
font-size:45px;
margin-bottom:40px;
color:#002147;
}

.gallery-grid{
display:grid;
grid-template-columns:
repeat(auto-fit,minmax(300px,1fr));
gap:20px;
}

.gallery-grid img{
width:100%;
height:300px;
object-fit:cover;
border-radius:15px;
transition:0.4s;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.gallery-grid img:hover{
transform:scale(1.05);
}
/* Smooth Scroll Animation */
section{
animation:fadeIn 1s ease;
}

/* Navbar hover underline */
.nav-links a{
position:relative;
}

.nav-links a::after{
content:'';
position:absolute;
width:0;
height:3px;
background:#FFD700;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

/* Glass effect cards */
.card,
.course-card,
.stat-box{
backdrop-filter:blur(10px);
}

/* Scrollbar Design */
::-webkit-scrollbar{
width:10px;
}

::-webkit-scrollbar-track{
background:#ddd;
}

::-webkit-scrollbar-thumb{
background:#002147;
border-radius:10px;
}
/* Footer */
footer{
background:#00152d;
color:white;
text-align:center;
padding:25px;
font-size:18px;
}

/* Animation */
@keyframes fadeIn{
from{
opacity:0;
transform:translateY(30px);
}
to{
opacity:1;
transform:translateY(0);
}
}

/* Responsive */
@media(max-width:768px){

.navbar{
flex-direction:column;
padding:20px;
}

.logo{
font-size:24px;
text-align:center;
}

.nav-links{
flex-direction:column;
text-align:center;
margin-top:10px;
}

.nav-links li{
margin:10px 0;
}

.hero-content h1{
font-size:40px;
}

.hero-content p{
font-size:20px;
}

.stats{
padding:50px 20px;
}

.principal{
padding:50px 20px;
}
}
/* Notice Board */
.notice-board{
padding:80px 50px;
text-align:center;
background:white;
}

.notice-board h1{
font-size:45px;
margin-bottom:40px;
color:#002147;
}

.notice-container{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
}

.notice-card{
background:#002147;
color:white;
padding:30px;
width:320px;
border-radius:20px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
transition:0.3s;
}

.notice-card:hover{
transform:translateY(-10px);
}

.notice-card h3{
color:#FFD700;
margin-bottom:15px;
}

/* Placement Companies */
.placements{
padding:80px 50px;
text-align:center;
background:#eef2f7;
}

.placements h1{
font-size:45px;
margin-bottom:40px;
color:#002147;
}

.company-logos{
display:flex;
justify-content:center;
align-items:center;
gap:50px;
flex-wrap:wrap;
}

.company-logos img{
width:150px;
height:80px;
object-fit:contain;
transition:0.3s;
}

.company-logos img:hover{
transform:scale(1.1);
}
/* Contact Page */
.contact-section{
padding:100px 50px;
background:#eef2f7;
text-align:center;
}

.contact-section h1{
font-size:50px;
margin-bottom:40px;
color:#002147;
}

.contact-container{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.contact-info{
background:#002147;
color:white;
padding:40px;
border-radius:20px;
width:350px;
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.contact-info h2{
margin-bottom:20px;
}

.contact-info p{
margin:15px 0;
font-size:20px;
}

.contact-form{
background:white;
padding:40px;
border-radius:20px;
width:450px;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.contact-form input,
.contact-form textarea{
width:100%;
padding:15px;
margin:15px 0;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

.contact-form textarea{
height:150px;
resize:none;
}

.contact-form button{
background:#FFD700;
padding:15px 30px;
border:none;
border-radius:10px;
font-size:18px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.contact-form button:hover{
background:#002147;
color:white;
}
/* Student Login */
.login-section{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:
linear-gradient(rgba(0,0,0,0.5),
rgba(0,0,0,0.5)),
url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1')
center/cover no-repeat;
}

.login-box{
background:white;
padding:50px;
width:400px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
animation:fadeIn 1s ease;
}

.login-box h1{
margin-bottom:30px;
color:#8d9195;
}

.login-box input{
width:100%;
padding:15px;
margin:15px 0;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

.login-box button{
width:100%;
padding:15px;
background:#FFD700;
border:none;
border-radius:10px;
font-size:20px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.login-box button:hover{
background:#002147;
color:white;
}

.forgot-password{
margin-top:20px;
color:#002147;
cursor:pointer;
}
/* Student Register */
.register-section{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:
linear-gradient(rgba(0,0,0,0.5),
rgba(0,0,0,0.5)),
url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1')
center/cover no-repeat;
}

.register-box{
background:white;
padding:50px;
width:450px;
border-radius:20px;
text-align:center;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
animation:fadeIn 1s ease;
}

.register-box h1{
margin-bottom:25px;
color:#002147;
}

.register-box input{
width:100%;
padding:15px;
margin:15px 0;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

.register-box button{
width:100%;
padding:15px;
background:#FFD700;
border:none;
border-radius:10px;
font-size:20px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.register-box button:hover{
background:#002147;
color:white;
}
.register-box select{
width:100%;
padding:15px;
margin:15px 0;
border:1px solid #ccc;
border-radius:10px;
font-size:16px;
}

#studentIdDisplay{
margin-top:20px;
color:#002147;
font-size:22px;
}
/* Students Admin Page */
s-section{
padding:150px 50px;
text-align:center;
background:#eef2f7;
min-.studentheight:100vh;
}

.students-section h1{
font-size:45px;
margin-bottom:40px;
color:#002147;
}

table{
width:90%;
margin:auto;
border-collapse:collapse;
background:white;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
border-radius:15px;
overflow:hidden;
}

th{
background:#002147;
color:white;
padding:20px;
font-size:20px;
}

td{
padding:18px;
border-bottom:1px solid #ddd;
font-size:18px;
}

tr:hover{
background:#f5f5f5;
}
/* Dashboard */
.dashboard-section{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:#eef2f7;
}

.dashboard-box{
background:white;
padding:50px;
width:500px;
text-align:center;
border-radius:20px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.dashboard-box h1{
font-size:40px;
color:#002147;
margin-bottom:20px;
}

.dashboard-box h2{
margin-bottom:15px;
}

.dashboard-box p{
font-size:20px;
margin-bottom:30px;
}

.dashboard-buttons{
display:flex;
justify-content:center;
gap:20px;
}

.dashboard-btn{
background:#FFD700;
padding:15px 25px;
text-decoration:none;
color:black;
font-weight:bold;
border-radius:10px;
transition:0.3s;
}

.dashboard-btn:hover{
background:#002147;
color:white;
}
/* Notice New Badge */
.new-badge{
background:red;
color:white;
font-size:12px;
padding:4px 10px;
border-radius:20px;
margin-left:10px;
font-weight:bold;
animation:blink 1s infinite;
}

@keyframes blink{
0%{
opacity:1;
}

50%{
opacity:0.4;
}

100%{
opacity:1;
}
}
.new-badge{
background:red;
color:white;
padding:4px 10px;
border-radius:20px;
font-size:12px;
font-weight:bold;
margin-left:10px;
animation:blink 1s infinite;
}

@keyframes blink{
0%{opacity:1;}
50%{opacity:0.4;}
100%{opacity:1;}
}
.analytics-container{
    display:flex;
    gap:20px;
    justify-content:center;
    margin:30px;
    flex-wrap:wrap;
}

.analytics-card{
    background:white;
    width:220px;
    padding:25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
}

.analytics-card h2{
    color:#002b5c;
    font-size:35px;
}

.analytics-card p{
    font-size:20px;
    color:#555;
}
.card button{
    background:#002b5c;
    color:white;
    border:none;
    padding:12px 25px;
    border-radius:10px;
    cursor:pointer;
    margin-top:15px;
    font-size:16px;
}

.card a{
    text-decoration:none;
}

.card button{
    width:120px;
    height:45px;
    background:#002b5c;
    color:white;
    border:none;
    border-radius:10px;
    font-size:18px;
    font-weight:500;
    cursor:pointer;
    margin-top:20px;
    padding:0;
    display:flex;
    justify-content:center;
    align-items:center;
}

.card button:hover{
    background:#0044aa;
    transform:scale(1.05);
}

.card h2{
    color:#002b5c;
    font-size:24px;
    margin-bottom:12px;
}

.card p{
    color:#666;
    font-size:16px;
    margin-bottom:20px;
}

.card button{
    background:#002b5c;
    color:white;
    border:none;
    padding:8px 15px;
    border-radius:5px;
    cursor:pointer;
    font-size:10px;
    width:20px;
    height:7px;
    transition:0.3s;
}

.card button:hover{
    background:#0044aa;
    transform:scale(1.05);
}
.fee-alert{
    background:#ffdddd;
    color:#b30000;
    border-left:6px solid red;
    padding:20px;
    margin:20px auto;
    width:80%;
    border-radius:10px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
}
.back-btn{
    display:inline-block;
    background:#002b66;
    color:white;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-size:18px;
    font-weight:bold;
    margin:20px;
}

.back-btn:hover{
    background:#0044aa;
}
sselect{
    width:100%;
    padding:12px;
    margin-top:12px;
    margin-bottom:12px;
    border:2px solid #ccc;
    border-radius:10px;
    font-size:18px;
    background:white;
    cursor:pointer;
    outline:none;
    appearance:auto;
}
.logout-btn{
    background: red;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
}

.logout-btn:hover{
    background: darkred;
}
.fee-notification{
    background:#ffe5e5;
    color:#b30000;
    padding:20px;
    border-radius:15px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
    width:70%;
    margin:20px auto;
    box-shadow:0px 4px 10px rgba(0,0,0,0.2);
}
body{
    background:#eef2f7;
    font-family:Arial, sans-serif;
}


/* Navbar */

.admin-navbar{
    background:#002b5c;
    color:white;
    padding:20px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0px 4px 10px rgba(0,0,0,0.2);
}

.admin-navbar h1{
    margin:0;
    font-size:28px;
}


/* Logout */

.logout-btn{
    background:red;
    color:white;
    padding:12px 22px;
    border-radius:10px;
    text-decoration:none;
    font-weight:bold;
}

.logout-btn:hover{
    background:darkred;
}


/* Cards */

.cards-container{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:50px;
}

.card{
    width:280px;
    min-height:220px;
    background:white;
    border-radius:20px;
    padding:25px;
    text-align:center;
    box-shadow:0px 5px 15px rgba(0,0,0,0.15);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h2{
    color:#002b5c;
}

.card p{
    color:#666;
    font-size:17px;
}

.card button{
    background:#002b5c;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:10px;
    cursor:pointer;
    margin-top:15px;
    font-size:16px;
}

.card button:hover{
    background:#0044aa;
}
header{
    position: sticky;
    top: 0;
    z-index: 1000;
}
.hero{
    position: relative;
}

.hero::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.3);
}
.card{
    transition: 0.3s ease;
    cursor: pointer;
}

.card:hover{
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
nav a{
    transition: 0.3s;
}

nav a:hover{
    color: gold;
}
footer{
    background:#022b63;
    color:white;
    text-align:center;
    padding:25px;
    font-size:20px;
    font-weight:bold;
}
.course-card:hover{
    background:#022b63;
    color:white;
    transform: scale(1.05);
}
.gallery img{
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}
html{
    scroll-behavior: smooth;
}

body{
    margin:0;
    font-family: 'Poppins', sans-serif;
    background:#eef2f7;
}

/* Navbar */
header{
    background:#022b63;
    padding:15px4sz0px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 12px rgba(0,0,0,0.2);
}
.logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:white;
    text-decoration:none;
    color: white;
    font-size:28px;
    font-weight:bold;
}

.college-logo{
    width:50px;
    height:50px;
    object-fit:contain;
    border-radius:50%;

}

.logo:hover{
    color:#FFD700;
}
    color:white;
    font-size:28px;
    font-weight:bold;
    max-width:500px;
}

nav a{
    color:white;
    text-decoration:none;
    margin:0 15px;
    font-size:20px;
    font-weight:600;
    transition:0.3s;
}

nav a:hover{
    color:gold;
}

/* Hero Section */
.hero{
    height:75vh;
    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.65)),
    url('college-bg.jpg');

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    position:relative;
}

.hero h1{
    font-size:58px;
    line-height:1.1;
    max-width:1000px;
    margin-bottom:10px;
}

.hero p{
    font-size:28px;
}

.hero button{
    background:gold;
    border:none;
    padding:18px 45px;
    border-radius:10px;
    font-size:22px;
    cursor:pointer;
    transition:0.3s;
}

.hero button:hover{
    transform:scale(1.08);
}

/* Statistics */
.stats{
    display:flex;
    justify-content:center;
    gap:30px;
    padding:70px 20px;
    flex-wrap:wrap;
}

.stat-card{
    width:260px;
    background:#022b63;
    color:white;
    text-align:center;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    transition:0.3s;
}

.stat-card:hover{
    transform:translateY(-10px);
}

.stat-card h2{
    color:gold;
    font-size:55px;
}

/* Cards */
.card{
    background:white;
    border-radius:20px;
    padding:30px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

/* Gallery */
.gallery img{
    border-radius:20px;
    transition:0.4s;
}

.gallery img:hover{
    transform:scale(1.05);
}

/* Footer */
footer{
    background:#022b63;
    color:white;
    text-align:center;
    padding:25px;
    font-size:20px;
}

@keyframes fadeIn{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
.upload-label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#002b5b;
    font-size:16px;
}
/* Student Profile */

.profile-container{
    max-width:1000px;
    margin:30px auto;
}

.profile-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.profile-header{
    background:#002b5c;
    color:white;
    text-align:center;
    padding:30px;
}

.profile-pic{
    width:150px;
    height:150px;
    border-radius:50%;
    border:5px solid white;
    object-fit:cover;
}

.profile-header h2{
    margin:15px 0 5px;
}

.profile-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    padding:25px;
}

.detail-box{
    background:#f8f9fa;
    padding:15px;
    border-radius:10px;
}

.detail-box label{
    display:block;
    color:#002b5c;
    font-weight:bold;
    margin-bottom:5px;
}

.detail-box span{
    color:#333;
}

.full-width{
    grid-column:1/3;
}
.telugu-calendar-section{
    padding:80px 40px;
    background:#f5f7fa;
    text-align:center;
}

.telugu-calendar-section h1{
    color:#002147;
    font-size:40px;
    margin-bottom:30px;
}

.calendar-frame{
    max-width:1000px;
    margin:auto;
    background:white;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.calendar-frame img{
    width:100%;
    border-radius:10px;
}
.calendar-section{
padding:80px 30px;
background:#f5f7fa;
}

.calendar-section h1{
text-align:center;
font-size:45px;
color:#002147;
margin-bottom:40px;
}

.calendar-wrapper{
display:flex;
max-width:1200px;
margin:auto;
box-shadow:0 10px 25px rgba(0,0,0,0.15);
border-radius:20px;
overflow:hidden;
}

.calendar-left{
flex:3;
background:white;
padding:30px;
}

.calendar-right{
flex:1;
background:#002147;
color:white;
padding:30px;
}

.calendar-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.calendar-header a{
text-decoration:none;
font-size:25px;
color:#ff5722;
font-weight:bold;
}

.calendar-header h2{
color:#002147;
}

.calendar-left table{
width:100%;
border-collapse:collapse;
text-align:center;
}

.calendar-left th{
padding:15px;
}

.calendar-left td{
padding:18px;
font-size:18px;
}

.today{
background:#1976d2;
color:white;
border-radius:50%;
font-weight:bold;
}

.event-box{
padding:12px;
margin-bottom:15px;
background:rgba(255,255,255,0.1);
border-left:4px solid #00d4ff;
}
/* Notice + Calendar */

.notice-calendar-section{
    padding:80px 40px;
    background:#f5f7fa;
}

.notice-calendar-container{
    display:flex;
    gap:30px;
    justify-content:center;
    align-items:flex-start;
    flex-wrap:wrap;
}

.notice-box,
.calendar-box{
    flex:1;
    min-width:500px;
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,0.15);
}

.notice-box h1,
.calendar-box h1{
    text-align:center;
    color:#002147;
    margin-bottom:25px;
}

.notice-item{
    background:#eef2f7;
    padding:15px;
    margin-bottom:15px;
    border-left:5px solid #002147;
    border-radius:10px;
}

.notice-item h3{
    color:#002147;
    margin-bottom:8px;
}

.calendar-box table{
    width:100%;
    border-collapse:collapse;
    text-align:center;
}

.calendar-box th{
    background:#002147;
    color:white;
    padding:12px;
}

.calendar-box td{
    padding:12px;
    border:1px solid #ddd;
}

.today{
    background:#1976d2;
    color:white;
    font-weight:bold;
    border-radius:50%;
}

@media(max-width:900px){

.notice-box,
.calendar-box{
    min-width:100%;
}

}
.quick-links{
display:flex;
justify-content:center;
gap:25px;
padding:70px 30px;
flex-wrap:wrap;
background:white;
}

.quick-card{
width:220px;
height:180px;
background:#002147;
color:white;
text-decoration:none;
border-radius:20px;
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
font-size:40px;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.15);
}

.quick-card h3{
margin-top:15px;
font-size:22px;
}

.quick-card:hover{
transform:translateY(-10px);
background:#0044aa;
}
.whatsapp-btn{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
width:60px;
height:60px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
font-size:30px;
text-decoration:none;
z-index:999;
}
.nav-links a[href="admin-login.php"]{
    color:white;
    padding:10px 18px;
    border-radius:8px;
    font-weight:bold;

}
.calendar-header{
display:flex;
justify-content:space-between;
align-items:center;
margin-bottom:20px;
}

.calendar-header a{
text-decoration:none;
font-size:28px;
font-weight:bold;
color:#002147;
padding:5px 15px;
}

.calendar-header a:hover{
color:#1976d2;
}
.gallery-title{
    text-align:center;
    margin:30px 0;
    color:#002147;
}

.gallery-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:20px;
    padding:30px;
}

.gallery-container img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:15px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
}

.gallery-container img:hover{
    transform:scale(1.05);
}
.about-text{
    text-align:justify;
    line-height:1.8;
    font-size:18px;
    color:#333;
    max-width:1000px;
    margin:20px auto;
    padding:0 20px;
}
.about-section p{
    max-width:1000px;
    margin:auto;
    text-align:justify;
    line-height:1.9;
    font-size:20px;
}
.about-container{
    margin-top:120px;
}
.logo{
    cursor:pointer;
}
.login-container{
    margin-top:120px;
}
/* Mobile Responsive */

@media screen and (max-width:768px){

    .navbar{
        flex-direction:column;
        padding:15px;
    }

    .logo{
        font-size:20px;
        text-align:center;
    }

    .college-logo{
        width:40px;
        height:40px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        margin-top:10px;
    }

    .nav-links li{
        margin:8px;
    }

    .hero{
        height:60vh;
        padding:20px;
    }

    .hero h1{
        font-size:32px;
    }

    .hero p{
        font-size:18px;
    }

    .quick-card{
        width:160px;
        height:140px;
    }

    .stats,
    .features,
    .course-container{
        flex-direction:column;
        align-items:center;
    }

    .stat-box,
    .card,
    .course-card{
        width:90%;
    }

    .notice-box,
    .calendar-box{
        min-width:100%;
    }

    .company-logos img{
        width:100px;
    }

    .profile-details{
        grid-template-columns:1fr;
    }

    .full-width{
        grid-column:auto;
    }
}
@media screen and (min-width:769px) and (max-width:1024px){

    .hero h1{
        font-size:42px;
    }

    .quick-card{
        width:180px;
    }

    .stat-box,
    .card,
    .course-card{
        width:45%;
    }
}
img{
    max-width:100%;
    height:auto;
}
table{
    width:100%;
    overflow-x:auto;
    display:block;
}
.card-container{
display:flex;
gap:20px;
margin-bottom:30px;
}

.card{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 0 10px rgba(0,0,0,.1);
width:250px;
text-align:center;
}
.navbar{
background:#002b5c;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
box-sizing:border-box;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
text-decoration:none;
font-size:24px;
font-weight:bold;
}
.navbar{
background:#002b5c;
padding:15px 30px;
display:flex;
justify-content:space-between;
align-items:center;

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
box-sizing:border-box;
}

.logo{
display:flex;
align-items:center;
gap:10px;
color:white;
text-decoration:none;
font-size:24px;
font-weight:bold;
}

.college-logo{
width:50px;
height:50px;
border-radius:50%;
}

.nav-links{
display:flex;
list-style:none;
gap:20px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
}

.stats-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:30px 0;
}

.stat-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 0 10px rgba(0,0,0,0.15);
text-align:center;
}

.stat-card h2{
font-size:35px;
color:#002b5c;
margin:0;
}

.stat-card p{
margin-top:10px;
font-weight:bold;
}

.college-logo{
width:50px;
height:50px;
border-radius:50%;
}

.nav-links{
display:flex;
list-style:none;
gap:20px;
}

.nav-links a{
color:white;
text-decoration:none;
font-weight:bold;
}

.stats-container{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:20px;
margin:30px 0;
}

.stat-card{
background:white;
padding:25px;
border-radius:15px;
box-shadow:0 0 10px rgba(0,0,0,0.15);
text-align:center;
}

.stat-card h2{
font-size:35px;
color:#002b5c;
margin:0;
}

.stat-card p{
margin-top:10px;
font-weight:bold;
}
.back-btn{
    display:inline-block;
    background:#002b5c;
    color:white;
    text-decoration:none;
    padding:10px 18px;
    border-radius:8px;
    margin-bottom:20px;
}
.dropdown{
    position:relative;
}

.dropdown-menu{
    display:none;
    position:absolute;
    top:45px;
    right:0;
    background:#ffffff;
    min-width:220px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,0.2);
    padding:10px 0;
    z-index:9999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    color:#002b5c;
    font-weight:600;
    text-decoration:none;
    transition:0.3s;
}

.dropdown-menu li a:hover{
    background:#f5f5f5;
    color:#ff9800;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
.login-btn{
    background:#efeeed;
    color:#002b5c !important;
    padding:10px 16px;
    border-radius:8px;
    font-weight:bold;
}
.dropdown-menu{
    display:none;
    position:absolute;
    top:55px;
    right:0;
    width:220px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.2);
    z-index:999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:15px;
    text-decoration:none;
    color:#002b5c;
    font-weight:600;
    transition:.3s;
}

.dropdown-menu li a:hover{
    background:#002b5c;
    color:white;
}
.fee-notification{
    background:#fff3cd;
    color:#856404;
    padding:15px;
    border-radius:10px;
    margin-bottom:20px;
    font-weight:bold;
}

footer{
    text-align:center;
    background:#002b5c;
    color:white;
    padding:15px;
    margin-top:30px;
}
.id-card{
    page-break-after:always;
}

.info{
    text-align:left;
    line-height:1.8;
}
.print-btn{
    background:green;
    color:white;
    padding:8px 12px;
    text-decoration:none;
    border-radius:6px;
}
.logo-link{
    text-decoration:none;
    color:white;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo h2{
    color:white;
}

/* =========================
   UNIVERSAL RESPONSIVE
========================= */

.container{
width:95%;
max-width:1400px;
margin:auto;
}

img{
max-width:100%;
height:auto;
}

/* Laptop */

@media screen and (max-width:1200px){

.stats-container{
grid-template-columns:repeat(2,1fr);
}

.card-container{
flex-wrap:wrap;
justify-content:center;
}

}

/* Tablet */

@media screen and (max-width:992px){

.navbar{
flex-direction:column;
text-align:center;
padding:15px;
}

.nav-links{
flex-wrap:wrap;
justify-content:center;
margin-top:10px;
gap:10px;
}

.hero h1{
font-size:40px;
}

.hero p{
font-size:20px;
}

.stats-container{
grid-template-columns:repeat(2,1fr);
}

.profile-details{
grid-template-columns:1fr;
}

.full-width{
grid-column:auto;
}

}

/* Mobile */

@media screen and (max-width:768px){

.navbar{
padding:15px;
}

.logo{
font-size:18px;
text-align:center;
}

.college-logo{
width:40px;
height:40px;
}

.hero{
height:auto;
padding:80px 20px;
}

.hero h1{
font-size:28px;
}

.hero p{
font-size:16px;
}

.stats-container{
grid-template-columns:1fr;
}

.card-container{
flex-direction:column;
align-items:center;
}

.card,
.course-card,
.stat-box,
.notice-card,
.quick-card{
width:100%;
max-width:350px;
}

.quick-card{
height:auto;
padding:20px;
}

.btn,
button,
.action-card{
width:100%;
display:block;
text-align:center;
}

table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

.login-box,
.register-box,
.contact-form,
.contact-info{
width:95%;
padding:25px;
}

.notice-calendar-container{
flex-direction:column;
}

.notice-box,
.calendar-box{
min-width:100%;
}

}

/* Small Mobile */

@media screen and (max-width:480px){

.hero h1{
font-size:22px;
}

.hero p{
font-size:14px;
}

.logo{
font-size:16px;
}

.nav-links a{
font-size:14px;
}

.card{
padding:15px;
}

.stat-card h2{
font-size:28px;
}

}
.top-actions{
display:flex;
justify-content:flex-end;
gap:10px;
margin-bottom:15px;
}

.download-btn,
.excel-btn{
background:#002b5c;
color:white;
padding:8px 12px;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.download-btn:hover,
.excel-btn:hover{
opacity:0.9;
}

.menu-toggle{
display:none;
background:none;
border:none;
color:white;
font-size:28px;
cursor:pointer;
z-index:999;
}

@media (max-width:768px){

.menu-toggle{
display:block !important;
}

.nav-links{
display:none !important;
flex-direction:column;
position:absolute;
top:70px;
left:0;
width:100%;
background:#002b5c;
padding:10px 0;
z-index:999;
}

.nav-links.show{
display:flex !important;
}

}
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
position:relative;

position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
box-sizing:border-box;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
}

footer{
    margin-top:auto;
}

.menu-toggle{
    display:none !important;
}

.principal-section{
display:flex;
align-items:flex-start;
justify-content:center;
gap:60px;
max-width:1400px;
margin:80px auto;
padding:0 40px;
}

.principal-photo{
width:320px;
min-width:320px;
}

.principal-photo img{
width:100%;
height:auto;
display:block;
border-radius:12px 12px 0 0;
}

.principal-content{
flex:1;
}

.principal-content h2{
font-size:52px;
color:#0b2f6b;
font-weight:bold;
margin-bottom:25px;
text-align:left;
}

.principal-content p{
font-size:22px;
line-height:2;
text-align:justify;
color:#333;
}


.visitor-box{
width:250px;
margin:20px auto;
padding:15px;
background:#002b5c;
border-radius:12px;
text-align:center;
box-shadow:0 4px 15px rgba(0,0,0,.2);
}

.visitor-box h3{
margin:0 0 10px;
color:white;
font-size:16px;
letter-spacing:1px;
}

.visitor-number{
background:black;
color:#00ff00;
padding:12px;
border-radius:8px;
font-size:28px;
font-weight:bold;
font-family:"Courier New", monospace;
letter-spacing:4px;
box-shadow:0 0 10px #00ff00;
}
.news-ticker{
background:#002b5c;
color:#fff;
overflow:hidden;
height:50px;
line-height:50px;
white-space:nowrap;
font-weight:600;
margin-top:0;
padding:8px 0;
}

.ticker-wrap{
display:inline-block;
padding-left:100%;
animation:ticker 18s linear infinite;
}

.ticker-wrap span{
margin-right:60px;
font-size:16px;
}

@keyframes ticker{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-100%);
}
}

@media(max-width:768px){

.news-ticker{
height:45px;
line-height:45px;
}

.ticker-wrap span{
font-size:15px;
margin-right:40px;
}

}

@keyframes ticker{

0%{
transform:translateX(0);
}

100%{
transform:translateX(-100%);
}

}
.social-links{
margin-top:15px;
display:flex;
flex-wrap:wrap;
gap:10px;
justify-content:center;
}

.social-links a{
background:white;
color:#002b5c;
padding:10px 15px;
border-radius:8px;
text-decoration:none;
font-weight:bold;
transition:0.3s;
}

.social-links a:hover{
background:#ffd700;
transform:translateY(-2px);
}

/* =========================
   BOOK HERO SECTION
========================= */

.book-hero{
position:relative;
margin-top:40px;
height:500px;
margin-bottom:0;
padding:0;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

.book-hero::before{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:url('college-bg.jpg')
center center/cover no-repeat;

filter:blur(5px);

transform:scale(1.1);

z-index:1;

}

.book-hero::after{

content:"";

position:absolute;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,0.35);

z-index:2;

}

.book-container{
position:relative;
z-index:3;
}

/* BOOK */

.book{
display:flex;
position:relative;
background:#fff;
padding:15px;
border-radius:20px;
}

.book-binding{
position:absolute;
left:50%;
top:0;
width:16px;
height:100%;
transform:translateX(-50%);
background:
linear-gradient(
to right,
#555,
#ddd,
#555
);
}

.book-page{
width:300px;
height:420px;
object-fit:cover;
}

.book-wrapper{

position:relative;

z-index:100;

display:flex;

align-items:center;

justify-content:center;

gap:20px;

}

/* BUTTONS */

.book-nav{

width:60px;
height:60px;

border:none;

border-radius:50%;

background:#002b5c;

color:white;

font-size:28px;

cursor:pointer;

box-shadow:
0 5px 15px rgba(0,0,0,.3);

transition:.3s;

}

.book-nav:hover{

background:#004080;

transform:scale(1.08);

}

/* HERO BUTTONS */

.hero-buttons{

margin-top:25px;

display:flex;
justify-content:center;
gap:15px;

}

.apply-btn,
.download-btn{

display:inline-block;

padding:12px 25px;

border-radius:8px;

text-decoration:none;

font-weight:bold;

font-size:16px;

}

.apply-btn{

background:#ffcc00;
color:#000;

}

.download-btn{

background:#002b5c;
color:#fff;

}

/* =========================
   MOBILE VIEW
========================= */

@media (max-width:768px){

.book{
    width:280px;
    height:420px;
}

.right-page{
    display:none !important;
}

.book-binding{
    display:none !important;
}

.book-page{
    width:100%;
    height:100%;
    object-fit:cover;
}

}
@media(max-width:768px){

.book-hero{
height:420px;
margin-top:50px;
}

.book{
width:280px;
height:380px;
}

}

.info-section{
display:flex;
justify-content:center;
align-items:flex-start;
gap:25px;
margin:40px auto;
}

.visitor-box{
width:350px;
}

@media(max-width:768px){

.info-section{
flex-direction:column;
align-items:center;
}

.visitor-box{
width:90%;
}

}

/* ================= FOOTER ================= */

.footer{
background:#002b5c;
padding:15px 20px;
color:#fff;
}

.footer-container{
max-width:1200px;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
gap:20px;
}

.footer-left,
.footer-right{
flex:1;
text-align:center;
}

.copyright{
font-size:18px;
font-weight:600;
margin-bottom:5px;
line-height:1.4;
}

.rights{
font-size:16px;
font-weight:500;
margin:0;
}

.footer-divider{
width:1px;
height:70px;
background:rgba(255,255,255,.5);
}

.developed{
font-size:16px;
margin-bottom:5px;
}

.developer-name{
font-size:24px;
font-weight:bold;
color:#FFD700;
margin:0;
line-height:1.3;
}

.footer-line{
margin-top:15px;
height:1px;
background:rgba(255,255,255,.3);
width:95%;
margin-left:auto;
margin-right:auto;
}

@media(max-width:768px){

.footer{
padding:15px;
}

.footer-container{
flex-direction:column;
gap:15px;
}

.footer-divider{
width:90%;
height:1px;
}

.copyright{
font-size:16px;
}

.rights{
font-size:14px;
}

.developed{
font-size:15px;
}

.developer-name{
font-size:20px;
}

}
/* ================= Chairman Section ================= */

.principal-section{
display:flex;
align-items:flex-start;
justify-content:center;
gap:50px;
max-width:1400px;
margin:80px auto;
padding:0 40px;
}

.principal-photo{
width:320px;
min-width:320px;
text-align:center;
}

.principal-photo img{
width:100%;
display:block;
border-radius:15px 15px 0 0;
box-shadow:0 5px 15px rgba(0,0,0,.2);
}

.chairman-card{
background:#fff;
padding:20px;
border-radius:0 0 15px 15px;
box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.chairman-card h3{
font-size:20px;
color:#002b5c;
margin-bottom:8px;
font-weight:bold;
}

.chairman-card span{
display:block;
font-size:18px;
color:#666;
margin-bottom:15px;
}

.chairman-divider{
display:flex;
justify-content:center;
align-items:center;
gap:15px;
color:#002b5c;
font-size:20px;
}

.chairman-divider::before,
.chairman-divider::after{
content:"";
width:70px;
height:2px;
background:#002b5c;
display:block;
}

.principal-content{
flex:1;
}

.principal-content h2{
font-size:48px;
color:#002b5c;
margin-bottom:25px;
}

.principal-content p{
font-size:20px;
line-height:1.3;
text-align:justify;
color:#333;
}

/* Mobile */

@media(max-width:768px){

.principal-section{
flex-direction:column;
align-items:center;
padding:20px;
}

.principal-photo{
width:280px;
min-width:auto;
}

.principal-content h2{
font-size:34px;
text-align:center;
}

.principal-content p{
font-size:17px;
line-height:1.8;
}

}
.register-box{
width:700px;
margin:30px auto;
background:#fff;
padding:30px;
border-radius:15px;
box-shadow:0 0 10px rgba(0,0,0,.2);
}

.register-box h1{
text-align:center;
color:#002b5c;
}

.register-box h3{
margin-top:20px;
color:#002b5c;
border-bottom:2px solid #002b5c;
padding-bottom:5px;
}

label{
display:block;
margin-top:12px;
font-weight:bold;
}

input,select{
width:100%;
padding:10px;
margin-top:5px;
border:1px solid #ccc;
border-radius:8px;
box-sizing:border-box;
}

button{
width:100%;
margin-top:20px;
padding:12px;
background:#002b5c;
color:#fff;
border:none;
border-radius:8px;
font-size:16px;
cursor:pointer;
}

button:hover{
background:#004080;
}

.service-card{

background:#fff;
border:1px solid #ddd;
border-radius:12px;
padding:20px;
text-align:center;
text-decoration:none;
transition:.3s;
color:#002b5c;

}

.service-card:hover{

transform:translateY(-4px);
box-shadow:0 8px 18px rgba(0,0,0,.12);

}

.service-card i{

font-size:34px;
margin-bottom:12px;
color:#2563eb;

}

.service-card h4{

margin:10px 0;

}

.service-card p{

color:#666;
font-size:14px;

}

.instructions{
background:#fff8e1;
border-left:6px solid #ff9800;
padding:18px;
margin:20px 0;
border-radius:10px;
}

.instructions h3{
margin-top:0;
color:#d35400;
}

.instructions ul{
margin:0;
padding-left:22px;
}

.instructions li{
margin-bottom:10px;
line-height:1.7;
font-size:15px;
}