/*=====================================
  SRIJANI ART AND CRAFT
  STYLE.CSS
======================================*/

/* Google Font */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/*=========================
RESET
=========================*/

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{

scroll-behavior:smooth;

}

body{

font-family:'Poppins',sans-serif;
background:#fff;
color:#222;
overflow-x:hidden;

}

/*=========================
COMMON
=========================*/

img{

max-width:100%;
display:block;

}

a{

text-decoration:none;

}

ul{

list-style:none;

}

.container{

width:90%;
max-width:1300px;
margin:auto;

}

/*=========================
HEADER
=========================*/

#header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:999;

    background:rgba(0,0,0,.25);

    backdrop-filter:blur(12px);

    -webkit-backdrop-filter:blur(12px);

    transition:.35s ease;

}

.navbar{

width:90%;
max-width:1400px;

margin:auto;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px 0;

}

/*=========================
LOGO
=========================*/

.logo{

display:flex;
align-items:center;

}

.logo img{

width:80px;
height:80px;

object-fit:contain;

margin-right:15px;

}

.logo-text h2{

font-size:28px;
font-weight:700;

color:#fff;

}

.logo-text span{

font-size:12px;

letter-spacing:3px;

color:#fff;

}

/*=========================
MENU
=========================*/

.nav-links{

display:flex;
gap:35px;

}

.nav-links a{

color:#fff;

font-weight:500;

transition:.3s;

}

.nav-links a:hover{

color:#FFD54F;

}

.active{

color:#FFD54F !important;

}

/*=========================
BUTTON
=========================*/

.nav-btn{

padding:14px 32px;

background:#4F46E5;

color:#fff;

border-radius:40px;

font-weight:600;

transition:.3s;

}

.nav-btn:hover{

background:#FFD54F;

color:#111;

}

/*=========================
HERO
=========================*/

#hero{

height:100vh;

min-height:850px;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../images/hero.jpg");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

position:relative;

}

/* Overlay */

.hero-overlay{

position:absolute;
inset:0;

background:rgba(0,0,0,.35);

}

/* Content */

.hero-content{

position:relative;

z-index:5;

max-width:900px;

padding:20px;

animation:fadeUp 1s ease;

}

/* Tag */

.hero-tag{

display:inline-block;

background:#FFD54F;

color:#111;

padding:12px 26px;

border-radius:50px;

font-size:15px;

font-weight:600;

margin-bottom:30px;

}

/* Heading */

.hero-content h1{

    font-size:84px;

    font-weight:800;

    line-height:1.1;

    color:#fff;

    text-shadow:0 5px 25px rgba(0,0,0,.6);

    margin-bottom:25px;

}

/* Paragraph */

.hero-content p{

    font-size:22px;

    line-height:1.8;

    color:#eee;

    text-shadow:0 3px 15px rgba(0,0,0,.6);

    margin-bottom:45px;

}

/* Buttons */

.hero-buttons{

display:flex;

justify-content:center;

gap:20px;

flex-wrap:wrap;

}

.btn{

display:inline-block;

padding:18px 42px;

border-radius:50px;

font-size:17px;

font-weight:600;

transition:.3s;

box-shadow:0 15px 35px rgba(0,0,0,.25);

}

.btn-primary{

background:#4F46E5;

color:#fff;

}

.btn-primary:hover{

background:#312E81;

transform:translateY(-4px);

}

.btn-secondary{

background:#fff;

color:#111;

}

.btn-secondary:hover{

background:#FFD54F;

transform:translateY(-4px);

}

/*=========================
ANIMATION
=========================*/

@keyframes fadeUp{

0%{

opacity:0;

transform:translateY(60px);

}

100%{

opacity:1;

transform:translateY(0);

}

}


/*=====================================
ABOUT
======================================*/

#about{

padding:120px 0;

background:#ffffff;

}

.about-container{

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:70px;

}

.about-image img{

width:100%;

border-radius:20px;

box-shadow:0 25px 60px rgba(0,0,0,.12);

}

.section-tag{

display:inline-block;

background:#FFD54F;

color:#111;

padding:10px 22px;

border-radius:50px;

font-weight:600;

margin-bottom:20px;

}

.about-content h2{

font-size:48px;

line-height:1.2;

margin-bottom:25px;

color:#222;

}

.about-content p{

font-size:18px;

line-height:1.9;

color:#666;

margin-bottom:35px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:18px;

margin-bottom:40px;

}

.feature{

background:#f8f8f8;

padding:18px;

border-radius:14px;

font-weight:600;

transition:.3s;

}

.feature:hover{

background:#4F46E5;

color:#fff;

transform:translateY(-5px);

box-shadow:0 15px 30px rgba(79,70,229,.25);

}


/*=====================================
COURSES
======================================*/

#courses{

padding:120px 0;

background:#f8fafc;

}

.section-title{

text-align:center;

max-width:750px;

margin:0 auto 70px;

}

.section-title h2{

font-size:48px;

margin:20px 0;

color:#222;

}

.section-title p{

font-size:18px;

line-height:1.8;

color:#666;

}

.course-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.course-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

}

.course-card:hover{

transform:translateY(-10px);

box-shadow:0 20px 50px rgba(79,70,229,.18);

}

.course-icon{

font-size:55px;

margin-bottom:20px;

}

.course-card h3{

font-size:24px;

margin-bottom:15px;

color:#222;

}

.course-card p{

font-size:16px;

line-height:1.7;

color:#666;

}

.course-btn{

margin-top:60px;

text-align:center;

}



/*=====================================
WHY CHOOSE US
======================================*/

#why-us{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.why-card{

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-10px);

    background:#4F46E5;

    color:#fff;

}

.why-icon{

    font-size:55px;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    line-height:1.8;

    font-size:16px;

}

.counter-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:80px;

}

.counter-box{

    background:#4F46E5;

    color:#fff;

    text-align:center;

    padding:40px 20px;

    border-radius:20px;

}

.counter-box h2{

    font-size:48px;

    margin-bottom:10px;

    font-weight:700;

}

.counter-box span{

    font-size:18px;

}




/*=====================================
GALLERY
======================================*/

#gallery{

    padding:120px 0;

    background:#f8fafc;

}

.gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:60px;

}

.gallery-item{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

    cursor:pointer;

}

.gallery-item img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.5s;

}

.gallery-item:hover img{

    transform:scale(1.08);

}

.gallery-btn{

    text-align:center;

    margin-top:60px;

}




/*=====================================
NOTICE
======================================*/

#notice{

    padding:120px 0;

    background:#ffffff;

}

.notice-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

.notice-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    border-top:5px solid #4F46E5;

}

.notice-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(79,70,229,.18);

}

.notice-date{

    display:inline-block;

    background:#4F46E5;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    font-weight:600;

    margin-bottom:20px;

}

.notice-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;

}

.notice-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

}

.notice-card a{

    color:#4F46E5;

    font-weight:600;

}

.notice-card a:hover{

    color:#F59E0B;

}

.urgent{

    border-top:5px solid #e11d48;

}

.urgent .notice-date{

    background:#e11d48;

}

.notice-btn{

    text-align:center;

    margin-top:60px;

}



/*=====================================
EVENTS
======================================*/

#events{

    padding:120px 0;

    background:#f8fafc;

}

.event-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

    margin-top:60px;

}

.event-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 20px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.event-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 60px rgba(79,70,229,.18);

}

.event-image img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.event-content{

    padding:35px;

}

.event-date{

    display:inline-block;

    background:#4F46E5;

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:14px;

    margin-bottom:20px;

}

.event-content h3{

    font-size:28px;

    margin-bottom:15px;

}

.event-content p{

    color:#666;

    line-height:1.8;

    margin-bottom:30px;

}



/*=====================================
CONTACT
======================================*/

#contact{

    padding:120px 0;

    background:#ffffff;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    margin-top:60px;

}

.contact-info{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.info-box{

    background:#f8fafc;

    padding:30px;

    border-radius:18px;

    transition:.35s;

}

.info-box:hover{

    background:#4F46E5;

    color:#fff;

}

.info-box h3{

    margin-bottom:15px;

    font-size:22px;

}

.info-box p{

    line-height:1.8;

}

.contact-form{

    background:#f8fafc;

    padding:40px;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    width:100%;

    padding:18px;

    border:1px solid #ddd;

    border-radius:12px;

    outline:none;

    font-size:16px;

    font-family:'Poppins',sans-serif;

}

.contact-form input:focus,
.contact-form textarea:focus{

    border-color:#4F46E5;

}

.contact-form button{

    border:none;

    cursor:pointer;

}

.contact-buttons{

    display:flex;

    gap:20px;

    margin-top:30px;

    flex-wrap:wrap;

}



/*=====================================
FOOTER
======================================*/

#footer{

    background:#111827;

    color:#ffffff;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-about img{

    width:90px;

    margin-bottom:20px;

}

.footer-about h3,
.footer-links h3,
.footer-contact h3,
.footer-social h3{

    margin-bottom:20px;

    font-size:22px;

}

.footer-about p,
.footer-contact p{

    color:#cbd5e1;

    line-height:1.8;

}

.footer-links ul{

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#cbd5e1;

    transition:.3s;

}

.footer-links a:hover{

    color:#FFD54F;

}

.social-links{

    display:flex;

    gap:15px;

    margin-top:20px;

}

.social-links a{

    width:48px;

    height:48px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#1f2937;

    border-radius:50%;

    font-size:22px;

    transition:.3s;

}

.social-links a:hover{

    background:#4F46E5;

    transform:translateY(-5px);

}

#footer hr{

    border:none;

    border-top:1px solid rgba(255,255,255,.1);

    margin:50px 0 30px;

}

.copyright{

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

.copyright p{

    color:#94a3b8;

}

.back-top{

    color:#FFD54F;

    font-weight:600;

}

.back-top:hover{

    color:#ffffff;

}


/*=====================================
ABOUT PAGE
======================================*/

.page-banner{

height:420px;

background:
linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
url("../images/about-banner.jpg");

background-size:cover;
background-position:center;

display:flex;
justify-content:center;
align-items:center;

position:relative;

color:#fff;

text-align:center;

}

.banner-overlay{

position:absolute;
inset:0;

background:rgba(0,0,0,.30);

}

.banner-content{

position:relative;
z-index:5;

}

.banner-content h1{

font-size:72px;

margin-bottom:20px;

}

.banner-content p{

font-size:22px;

}

.about-page{

padding:120px 0;

}

.vision{

padding:100px 0;

background:#f8fafc;

}

.vision-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.vision-box{

padding:50px;

background:#fff;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

text-align:center;

}

.counter-section{

padding:100px 0;

background:#4F46E5;

}

.counter-section .counter-box{

background:transparent;

box-shadow:none;

color:#fff;

}

.counter-section .counter-box h2{

font-size:60px;

margin-bottom:10px;

}

.counter-section .counter-box p{

font-size:20px;

}


/*=====================================
COURSES PAGE
======================================*/

.course-page{

padding:120px 0;

background:#ffffff;

}

.course-page-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:35px;

margin-top:60px;

}

.course-box{

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 40px rgba(0,0,0,.08);

transition:.35s;

}

.course-box:hover{

transform:translateY(-10px);

box-shadow:0 30px 60px rgba(79,70,229,.18);

}

.course-image img{

width:100%;

height:250px;

object-fit:cover;

}

.course-info{

padding:30px;

}

.course-info h3{

font-size:28px;

margin-bottom:15px;

}

.course-info p{

color:#666;

line-height:1.8;

margin-bottom:20px;

}

.course-info ul{

margin-bottom:30px;

padding-left:20px;

}

.course-info li{

margin-bottom:10px;

color:#444;

}



/*=====================================
GALLERY PAGE
======================================*/

.gallery-page{

padding:120px 0;

background:#fff;

}

.gallery-filter{

display:flex;

justify-content:center;

gap:15px;

margin:40px 0 60px;

flex-wrap:wrap;

}

.gallery-filter button{

padding:12px 28px;

border:none;

background:#f1f5f9;

border-radius:50px;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.gallery-filter button:hover,
.gallery-filter .active{

background:#4F46E5;

color:#fff;

}

.gallery-page-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

}

.gallery-page-grid img{

width:100%;

height:320px;

object-fit:cover;

border-radius:18px;

cursor:pointer;

transition:.35s;

box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.gallery-page-grid img:hover{

transform:scale(1.05);

box-shadow:0 20px 50px rgba(79,70,229,.20);

}



/*=====================================
NOTICE PAGE
======================================*/

.notice-page{

padding:120px 0;

background:#f8fafc;

}

.notice-search{

margin:40px auto 60px;

max-width:500px;

}

.notice-search input{

width:100%;

padding:18px;

border:1px solid #ddd;

border-radius:50px;

font-size:16px;

outline:none;

}

.notice-page-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:35px;

}

.notice-box{

background:#fff;

padding:35px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

transition:.35s;

position:relative;

}

.notice-box:hover{

transform:translateY(-8px);

box-shadow:0 25px 60px rgba(79,70,229,.18);

}

.notice-box h3{

font-size:26px;

margin-bottom:18px;

}

.notice-box p{

line-height:1.8;

color:#666;

margin-bottom:15px;

}

.notice-box a{

color:#4F46E5;

font-weight:600;

}

.notice-box a:hover{

color:#F59E0B;

}

.notice-badge{

position:absolute;

top:20px;

right:20px;

background:#E11D48;

color:#fff;

padding:8px 14px;

border-radius:30px;

font-size:13px;

font-weight:600;

}

.featured{

border-left:6px solid #E11D48;

}




/*=====================================
ADMISSION PAGE
======================================*/

.admission-page{

padding:120px 0;

background:#f8fafc;

}

.admission-form{

max-width:900px;

margin:auto;

background:#fff;

padding:50px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.form-grid{

display:grid;

grid-template-columns:repeat(2,1fr);

gap:25px;

margin-bottom:25px;

}

.admission-form input,
.admission-form textarea{

width:100%;

padding:18px;

border:1px solid #ddd;

border-radius:12px;

font-size:16px;

font-family:'Poppins',sans-serif;

outline:none;

}

.admission-form input:focus,
.admission-form textarea:focus{

border-color:#4F46E5;

}

.upload-box{

display:block;

margin:25px 0;

padding:18px;

border:2px dashed #4F46E5;

border-radius:12px;

text-align:center;

cursor:pointer;

font-weight:600;

}

.upload-box input{

margin-top:15px;

}

.admission-form button{

margin-top:20px;

border:none;

cursor:pointer;

width:100%;

}




/*=====================================
STUDENT ID PAGE
======================================*/

.student-id-page{

padding:120px 0;

background:#ffffff;

}

.student-form{

max-width:900px;

margin:auto;

background:#fff;

padding:50px;

border-radius:20px;

box-shadow:0 20px 40px rgba(0,0,0,.08);

}

.id-preview{

padding:100px 0;

background:#f8fafc;

}

.id-card{

max-width:360px;

margin:auto;

background:#fff;

border-radius:20px;

overflow:hidden;

box-shadow:0 20px 50px rgba(0,0,0,.15);

}

.id-header{

background:#4F46E5;

padding:25px;

text-align:center;

color:#fff;

}

.id-header img{

width:70px;

margin:0 auto 15px;

}

.id-photo{

padding:25px;

text-align:center;

}

.id-photo img{

width:140px;

height:170px;

object-fit:cover;

border-radius:12px;

margin:auto;

}

.id-info{

padding:30px;

text-align:center;

}

.id-info h4{

font-size:24px;

margin-bottom:15px;

}

.id-info p{

margin:10px 0;

color:#555;

}



/*=====================================
CONTACT PAGE
======================================*/

.contact-page{

padding:120px 0;

background:#f8fafc;

}

.contact-page-grid{

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

margin-top:60px;

}

.contact-details{

display:flex;

flex-direction:column;

gap:25px;

}

.contact-item{

background:#fff;

padding:30px;

border-radius:18px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.contact-item:hover{

transform:translateY(-8px);

}

.contact-item h3{

margin-bottom:15px;

font-size:22px;

}

.contact-item a{

color:#4F46E5;

}

.contact-item a:hover{

color:#F59E0B;

}

.map-section{

width:100%;

height:450px;

}

.map-section iframe{

width:100%;

height:100%;

border:none;

}



/*=====================================
MOBILE MENU
======================================*/

.menu-toggle{

display:none;

background:none;

border:none;

font-size:32px;

color:#fff;

cursor:pointer;

}

.mobile-menu{

position:fixed;

top:0;

right:-100%;

width:300px;

height:100%;

background:#111827;

padding:40px 30px;

z-index:9999;

transition:.4s ease;

}

.mobile-menu.active{

right:0;

}

.close-menu{

background:none;

border:none;

color:#fff;

font-size:30px;

cursor:pointer;

margin-bottom:40px;

}

.mobile-menu ul{

list-style:none;

}

.mobile-menu li{

margin:25px 0;

}

.mobile-menu a{

color:#fff;

font-size:20px;

font-weight:500;

transition:.3s;

}

.mobile-menu a:hover{

color:#FFD54F;

}



/*=====================================
DARK MODE
======================================*/

.theme-toggle{

    width:48px;
    height:48px;

    border:none;

    border-radius:50%;

    background:#fff;

    font-size:22px;

    cursor:pointer;

    margin-left:20px;

    display:flex;
    justify-content:center;
    align-items:center;

    transition:.35s;

}

.theme-toggle:hover{

    transform:rotate(180deg);

}



.theme-toggle:hover{

transform:rotate(180deg);

}

/* Dark Theme */

body.dark{

background:#0F172A;

color:#ffffff;

}

body.dark section{

background:#0F172A !important;

color:#ffffff;

}

body.dark h1,
body.dark h2,
body.dark h3,
body.dark h4{

color:#ffffff;

}

body.dark p{

color:#CBD5E1;

}

body.dark .course-card,
body.dark .course-box,
body.dark .notice-card,
body.dark .notice-box,
body.dark .why-card,
body.dark .contact-form,
body.dark .info-box,
body.dark .event-card,
body.dark .gallery-item{

background:#1E293B;

color:#fff;

}

body.dark #footer{

background:#020617;

}

body.dark .nav-links a{

color:#ffffff;

}

.student-card{
    max-width:700px;
    margin:40px auto;
    background:#fff;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
    overflow:hidden;
}

.card-header{
    background:#3525d3;
    color:#fff;
    text-align:center;
    padding:25px;
}

.card-header img{
    background:#fff;
    border-radius:50%;
    padding:5px;
}

.student-photo{
    text-align:center;
    margin:25px 0;
}

.student-photo img{
    width:140px;
    height:140px;
    border-radius:50%;
    object-fit:cover;
    border:5px solid #3525d3;
}

.card-body{
    padding:30px;
}

.card-body table{
    width:100%;
    border-collapse:collapse;
}

.card-body td{
    padding:10px;
    border-bottom:1px solid #ddd;
}

.card-body button{
    width:100%;
}

.student-card{
    width:340px;
    margin:40px auto;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    border:2px solid #3525d3;
}

.card-header{
    background:linear-gradient(135deg,#3525d3,#6c63ff);
    color:#fff;
    text-align:center;
    padding:20px;
}

.card-header img{
    width:70px;
    height:70px;
    background:#fff;
    border-radius:50%;
    padding:5px;
    margin-bottom:10px;
}

.student-photo{
    text-align:center;
    margin-top:-45px;
}

.student-photo img{
    width:110px;
    height:110px;
    border-radius:50%;
    border:5px solid #fff;
    object-fit:cover;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,.2);
}

.card-body{
    padding:20px;
}

.card-body table{
    width:100%;
    border-collapse:collapse;
}

.card-body td{
    padding:8px;
    border-bottom:1px solid #eee;
    font-size:15px;
}

.card-body td:first-child{
    font-weight:700;
    width:40%;
}

.print-btn{
    margin-top:20px;
    width:100%;
}


/* ===========================
   PRINT ID CARD
=========================== */

@media print {

    body * {
        visibility: hidden;
    }

    .student-card,
    .student-card * {
        visibility: visible;
    }

    .student-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 340px;
        margin: 0;
        box-shadow: none;
        border: 2px solid #3525d3;
    }

    .print-btn {
        display: none;
    }

    header,
    footer,
    nav,
    .section-title,
    #searchBtn,
    #searchStudentId {
        display: none !important;
    }
}


/* ==========================
   PRINT STUDENT PROFILE
========================== */

@media print {

    body * {
        visibility: hidden;
    }

    .student-card,
    .student-card * {
        visibility: visible;
    }

    .student-card {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        box-shadow: none;
        border: none;
    }

    button {
        display: none !important;
    }

}


/*==========================
NOTICE MANAGEMENT
==========================*/

.notice-section{
    margin-top:50px;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.notice-form input,
.notice-form textarea{

    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    box-sizing:border-box;

}

.notice-form textarea{

    resize:vertical;

}

.notice-item{

    background:#f8f9fa;
    border-left:5px solid #3525d3;
    padding:20px;
    margin-bottom:20px;
    border-radius:10px;

}

.notice-item h3{

    margin-bottom:10px;

}

.notice-item p{

    margin-bottom:15px;

}


/*==========================
NOTICE MODAL
==========================*/

.modal{

    display:none;
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    z-index:9999;

}

.modal-content{

    background:#fff;
    max-width:600px;
    margin:80px auto;
    padding:30px;
    border-radius:15px;

}

.modal-content input,
.modal-content textarea{

    width:100%;
    padding:15px;
    margin:15px 0;
    border:1px solid #ddd;
    border-radius:10px;
    box-sizing:border-box;

}


.notice-box{

    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:25px;

}

.notice-badge{

    display:inline-block;
    background:#3525d3;
    color:#fff;
    padding:5px 12px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;

}

.notice-box h3{

    margin-bottom:15px;

}

.notice-box p{

    line-height:1.8;

}