* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
 
body {
    background: linear-gradient(135deg, #f17014, #f0ebe8);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
}
 
/* ── Header ── */
#header {
    background-color: rgb(241, 112, 20);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}
 
#imgtitle {
    display: flex;
    align-items: center;
    gap: 15px;
}
 
#title {
    color: white;
    margin: 0;
    font-size: 2rem;
}
 
#links {
    display: flex;
    gap: 10px;
}
 
.nav-btn {
    background-color: black;
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 13.5px;
    cursor: pointer;
    transition: 0.3s;
}
 
.nav-btn:hover, .nav-btn.active-page {
    color: rgb(241, 112, 20);
    background-color: white !important;
}
 
/* ── Container ── */
.container {
    padding: 40px 5%;
    flex: 1;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
 
/* ── Page Hero ── */
.page-hero {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
}
 
.page-hero h1 {
    font-size: 2.8rem;
    color: white;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    margin-bottom: 10px;
}
 
.page-hero p {
    font-size: 1.1rem;
    color: #333;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
}
 
.page-divider {
    height: 4px;
    width: 60px;
    background: black;
    margin: 0 auto;
    border-radius: 2px;
}
 
/* ── Section Title ── */
.section-title {
    font-size: 1.4rem;
    color: white;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 3px solid rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}
 
/* ── Guide Sections ── */
.guide-section {
    margin-bottom: 45px;
}
 
.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}
 
.guide-card {
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #1e293b;
    transition: 0.3s ease;
    display: flex;
    align-items: center;
    gap: 16px;
}
 
.guide-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.18);
    background: rgb(241, 112, 20);
    color: white;
}
 
.guide-card:hover .guide-card-desc {
    color: rgba(255,255,255,0.85);
}
 
.guide-card-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
}
 
.guide-card-text h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
}
 
.guide-card-desc {
    font-size: 0.78rem;
    color: #666;
    transition: 0.3s;
}
 
/* ── Contact Bar ── */
.contact-bar {
    background: rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 25px 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    backdrop-filter: blur(4px);
}
 
.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}
 
.contact-item-icon {
    font-size: 1.6rem;
}
 
.contact-item-text strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
 
.contact-item-text span {
    font-size: 1rem;
    font-weight: 700;
}

/* student nav */
#student_nav{
    border: black, 1px, solid;
}

#PicVeiw{
    width: 90%;
}
#TxtVeiw{
    width: 90%;
}

#CampNav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 40px auto;
    padding: 0 20px;
    border-radius: 5px;
    color: black;
    background-color: #f17014;
    border-color: black;
}
