/* ===== GLOBAL ===== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f4f7fb;
color:#333;
line-height:1.6;
}

.main-container{
max-width:1200px;
margin:auto;
padding:20px;
}

/* ===== HEADER ===== */

.main-header{
background:#1e3a5f;
color:white;
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 40px;
}

.logo{
font-size:22px;
font-weight:bold;
}

.header-right a{
color:white;
text-decoration:none;
margin-left:20px;
font-weight:bold;
transition:0.3s;
}

.header-right a:hover{
color:#2bb3c0;
}

/* ===== QUICK ACCESS ===== */

.quick-access{
background:white;
padding:15px;
text-align:center;
box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

.quick-access nav{
margin-top:10px;
display:flex;
justify-content:center;
gap:20px;
}

.quick-access nav a{
text-decoration:none;
font-weight:bold;
color:#1e3a5f;
}

.quick-access nav a:hover{
color:#2bb3c0;
}

/* ===== HERO ===== */

.hero-banner{
background:linear-gradient(rgba(30,58,95,0.85),rgba(30,58,95,0.85)),
url("https://images.unsplash.com/photo-1523050335102-c67447e1d139?q=80&w=1200");
background-size:cover;
background-position:center;
color:white;
text-align:center;
padding:70px 20px;
}

.hero-banner h1{
font-size:40px;
margin-bottom:10px;
}

.highlight{
color:#ffd54f;
}

/* ===== BUTTONS ===== */

.cta-group{
margin-top:25px;
}

.cta-group button{
padding:12px 25px;
border:none;
border-radius:6px;
margin:5px;
font-weight:bold;
cursor:pointer;
transition:0.3s;
}

.btn-primary{
background:#2bb3c0;
color:white;
}

.btn-primary:hover{
background:#239aa5;
}

.btn-secondary{
background:white;
color:#1e3a5f;
}

/* ===== SECTIONS ===== */

section{
padding:50px 20px;
text-align:center;
}

.recent-section{
background:#e6f7f9;
}

.container{
max-width:1200px;
margin:auto;
}

/* ===== CARDS ===== */

.cards{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
margin-top:30px;
}

.card{
background:white;
width:280px;
padding:20px;
border-radius:12px;
box-shadow:0 6px 14px rgba(0,0,0,0.08);
text-align:center;
transition:0.3s;
}

.card img{
width:100%;
height:280px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 14px 24px rgba(0,0,0,0.12);
}

/* ===== CATEGORIES ===== */

.categories{
background:white;
}

.category-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
gap:20px;
margin-top:20px;
}

.category-card{
background:white;
border-radius:10px;
padding:20px;
box-shadow:0 3px 8px rgba(0,0,0,0.08);
}

.category-card p{
font-size:28px;
}

/* ===== STATS ===== */

.stats{
display:flex;
justify-content:center;
gap:30px;
flex-wrap:wrap;
padding:40px 0;
}

.stat-card{
background:white;
padding:20px 40px;
border-radius:10px;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.stat-card h2{
font-size:36px;
color:#1e3a5f;
}

.stat-card p{
color:#666;
}

/* ===== FOOTER ===== */

footer{
background:#0f172a;
color:#cbd5e1;
padding:60px 10% 25px;
margin-top:80px;
}

.footer-container{
display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:40px;
}

.footer-col{
flex:1;
min-width:200px;
}

.footer-col h3,
.footer-col h4{
color:white;
margin-bottom:15px;
}

.footer-col a{
display:block;
color:#cbd5e1;
text-decoration:none;
margin-bottom:8px;
font-size:14px;
transition:0.3s;
}

.footer-col a:hover{
color:white;
padding-left:5px;
}

/* ===== SOCIAL ICONS ===== */

.social-icons{
display:flex;
gap:15px;
margin-top:15px;
}

.social-icons a{
display:flex;
align-items:center;
justify-content:center;
width:38px;
height:38px;
background:#1e293b;
border-radius:50%;
color:#cbd5e1;
transition:0.3s;
}

.social-icons a:hover{
background:#2bb3c0;
color:white;
}

/* ===== LOST ITEMS TABLE ===== */

table{
margin:0;
border-collapse:collapse;
width:75%;
max-width:900px;
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

th{
background:#1e3a5f;
color:white;
padding:16px;
font-size:18px;
}

td{
padding:14px;
text-align:center;
border-bottom:1px solid #eee;
}

tr:hover{
background:#f0f7ff;
}

td img{
width:70px;
height:70px;
object-fit:cover;
border-radius:8px;
}

/* CLAIM BUTTON */

.claim-btn{
background:#2bb3c0;
color:white;
border:none;
padding:8px 16px;
border-radius:5px;
cursor:pointer;
font-weight:bold;
}

.claim-btn:hover{
background:#1e3a5f;
}

/* BACK BUTTON */

.back-btn{
display:inline-block;
margin-top:30px;
padding:12px 24px;
background:#2bb3c0;
color:white;
text-decoration:none;
border-radius:6px;
font-weight:bold;
}

.back-btn:hover{
background:#1e3a5f;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.hero-banner h1{
font-size:30px;
}

.cards{
flex-direction:column;
align-items:center;
}

table{
width:95%;
}

.footer-container{
flex-direction:column;
text-align:center;
}

}

/* ===== LOGIN PAGE ===== */

.login-body{
height:100vh;
display:flex;
justify-content:center;
align-items:center;
background:linear-gradient(135deg,#1e3a5f,#3b82f6);
font-family:'Poppins',sans-serif;
}


/* LOGIN CARD */

.login-container{
background:white;
padding:45px 40px;
width:350px;
border-radius:14px;
text-align:center;
box-shadow:0 15px 35px rgba(0,0,0,0.25);
animation:fadeIn 0.6s ease;
}


/* TITLE */

.login-container h1{
color:#1e3a5f;
font-size:30px;
margin-bottom:5px;
font-weight:600;
}

.tagline{
color:#64748b;
font-size:14px;
margin-bottom:25px;
}

.login-container h2{
margin-bottom:20px;
color:#333;
}


/* INPUT FIELDS */

.login-container input{
width:100%;
padding:12px;
margin-bottom:15px;
border-radius:6px;
border:1px solid #d1d5db;
font-size:14px;
transition:0.3s;
}

.login-container input:focus{
outline:none;
border-color:#3b82f6;
box-shadow:0 0 6px rgba(59,130,246,0.3);
}


/* LOGIN BUTTON */

.login-container button{
width:100%;
padding:12px;
background:#3b82f6;
color:white;
border:none;
border-radius:6px;
font-size:15px;
font-weight:500;
cursor:pointer;
transition:0.3s;
}

.login-container button:hover{
background:#1e3a5f;
transform:translateY(-2px);
box-shadow:0 5px 15px rgba(0,0,0,0.2);
}


/* ANIMATION */

@keyframes fadeIn{

from{
opacity:0;
transform:translateY(20px);
}

to{
opacity:1;
transform:translateY(0);
}

}

/* CTA BUTTON GROUP */

.cta-group{
margin-top:25px;
text-align:center;
}

.cta-group nav{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
}

/* BUTTON STYLE LINKS */

.cta-group nav a{
text-decoration:none;
background:#3b82f6;
color:white;
padding:12px 26px;
border-radius:8px;
font-weight:500;
font-size:15px;
box-shadow:0 5px 12px rgba(0,0,0,0.15);
transition:0.3s;
}

/* HOVER EFFECT */

.cta-group nav a:hover{
background:#1e3a5f;
transform:translateY(-3px);
box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

/* ===== CONTACT PAGE ===== */

.page{
padding:70px 20px;
text-align:center;
background:#f4f8ff;
}

.page h1{
font-size:36px;
color:#1e3a5f;
margin-bottom:10px;
}

.page p{
color:#64748b;
max-width:600px;
margin:auto;
margin-bottom:35px;
font-size:16px;
}


/* ===== CONTACT FORM ===== */

#contactForm{
background:white;
max-width:500px;
margin:auto;
padding:35px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.08);
display:flex;
flex-direction:column;
gap:15px;
}

#contactForm input,
#contactForm textarea{
width:100%;
padding:12px;
border-radius:6px;
border:1px solid #d1d5db;
font-size:14px;
transition:0.3s;
}

#contactForm input:focus,
#contactForm textarea:focus{
outline:none;
border-color:#3b82f6;
box-shadow:0 0 6px rgba(59,130,246,0.25);
}


/* ===== BUTTON ===== */

#contactForm button{
background:#3b82f6;
color:white;
border:none;
padding:12px;
border-radius:6px;
font-size:15px;
font-weight:500;
cursor:pointer;
transition:0.3s;
}

#contactForm button:hover{
background:#1e3a5f;
transform:translateY(-2px);
box-shadow:0 6px 14px rgba(0,0,0,0.15);
}


/* ===== CONTACT INFO SECTION ===== */

.contact-info{
text-align:center;
margin-top:50px;
padding:30px;
background:white;
border-radius:12px;
max-width:500px;
margin-left:auto;
margin-right:auto;
box-shadow:0 8px 18px rgba(0,0,0,0.08);
}

.contact-info h2{
color:#1e3a5f;
margin-bottom:15px;
}

.contact-info p{
color:#475569;
margin:6px 0;
font-size:15px;
}


/* ===== RESPONSIVE ===== */

@media(max-width:768px){

.page h1{
font-size:28px;
}

#contactForm{
padding:25px;
}

}
.claim-btn{
background:#3b82f6;
color:white;
border:none;
padding:6px 12px;
border-radius:5px;
cursor:pointer;
}

.claim-btn:hover{
background:#1e3a5f;
}