/* ==========================================================================
   GLOBAL STYLES (Used on ALL Pages)
   Header, Footer, Navbar, Resets
   ========================================================================== */
* { box-sizing: border-box; }
body { margin: 0; padding: 0; font-family: 'Montserrat', sans-serif; background-color: #f4f4f4; }

/* --- BUTTON GRADIENT (Shared) --- */
.btn-gradient { padding: 15px 30px; font-weight: 700; text-decoration: none; border-radius: 5px; transition: all 0.3s ease; font-size: 14px; letter-spacing: 1px; background: linear-gradient(to right, #051937, #00b4d8); color: white; border: none; }
.btn-gradient:hover { box-shadow: 0 10px 20px rgba(0, 180, 216, 0.4); transform: translateY(-3px); }

/* --- HEADER --- */
.header-main { background-color: #ffffff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #e0e0e0; }
.brand-container { display: flex; align-items: center; gap: 15px; }
.logo-img { height: 100px; width: auto; }
.text-content { display: flex; flex-direction: column; justify-content: center; }
.college-title { font-size: 42px; font-weight: 900; color: #000; line-height: 0.9; letter-spacing: -1px; margin: 0; }
.college-subtitle { font-size: 13px; font-weight: 700; color: #222; text-transform: uppercase; margin: 5px 0 2px 0; letter-spacing: 0.5px; }
.accreditation { font-size: 12px; color: #555; font-weight: 500; }

.info-bar { background: linear-gradient(to right, #051937, #00b4d8); color: white; display: flex; justify-content: center; align-items: center; gap: 30px; padding: 5px 0; flex-wrap: nowrap; border-radius: 0 0 30px 30px; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin: 0 10px; }
.info-item { display: flex; align-items: center; gap: 8px; }
.info-item a { color: #ffffff !important; text-decoration: none; }
.icon-small { font-size: 16px; }

/* --- NAVBAR --- */
.sticky-navbar { position: sticky; top: 0; z-index: 1000; background-color: #ffffff; border-bottom: 1px solid #e0e0e0; box-shadow: 0 4px 6px rgba(0,0,0,0.05); padding: 0 20px; display: flex; justify-content: center; align-items: center; height: 60px; }
.nav-links { list-style: none; padding: 0; margin: 0; display: flex; gap: 30px; }
.nav-links li { display: inline-block; }
.nav-links a { text-decoration: none; color: #333; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-family: 'Montserrat', sans-serif; transition: color 0.3s ease; padding: 10px 0; }
.nav-links a:hover { color: #00b4d8; }
.nav-links a.active { color: #051937; border-bottom: 2px solid #051937; }

/* --- FOOTER --- */
.site-footer { background-color: #051937; color: white; padding-top: 70px; font-family: 'Roboto', sans-serif; }
.footer-container { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-logo { font-size: 32px; font-weight: 900; margin-bottom: 20px; letter-spacing: 1px; background: linear-gradient(to right, #ffffff, #00b4d8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-desc { font-size: 14px; line-height: 1.6; color: #a0a0a0; margin-bottom: 25px; max-width: 300px; }
.social-icons { display: flex; gap: 15px; }
.social-link { color: #00b4d8; text-decoration: none; font-size: 13px; font-weight: 700; text-transform: uppercase; transition: color 0.3s ease; }
.social-link:hover { color: white; }
.footer-heading { font-size: 18px; font-weight: 700; margin-bottom: 25px; color: white; position: relative; }
.footer-heading::after { content: ''; position: absolute; left: 0; bottom: -10px; width: 40px; height: 3px; background-color: #00b4d8; }
.footer-links, .contact-list { list-style: none; padding: 0; margin: 0; }
.footer-links li, .contact-list li { margin-bottom: 15px; color: white; }
.footer-links a { color: #a0a0a0; text-decoration: none; font-size: 14px; transition: all 0.3s ease; }
.footer-links a:hover { color: #00b4d8; padding-left: 5px; }
.contact-list li { font-size: 14px; color: #a0a0a0; display: flex; gap: 10px; align-items: flex-start; }
.footer-bottom { background-color: #031229; text-align: center; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom p { font-size: 12px; color: #666; margin: 0; }

/* --- GLOBAL MOBILE ADJUSTMENTS --- */
@media (max-width: 768px) {
    /* Header */
    .header-main { align-items: flex-start; gap: 15px; padding: 15px 20px; flex-direction: column; }
    .brand-container { width: 100%; }
    .college-title { font-size: 32px; }
    .info-bar { flex-direction: column; gap: 5px; padding: 10px 0; }
    .info-item { font-size: 18px; white-space: normal; justify-content: center; }
    /* Nav */
    .sticky-navbar { justify-content: center; overflow-x: hidden; white-space: normal; height: auto; padding: 10px 0; }
    .nav-links { gap: 15px; padding-right: 0px; flex-wrap: wrap; justify-content: center; }
    .nav-links a { font-size: 11px; padding: 5px 0; }
    /* Footer */
    .footer-container { grid-template-columns: 1fr; gap: 40px; text-align: left; }
    .footer-desc { max-width: 100%; }
}
/* Subtle Trademark Styles */
.dev-signature {
    display: block;           /* Puts it on a new line */
    margin-top: 5px;          /* Small gap from copyright */
    font-size: 10px;          /* Very small, non-intrusive font */
    color: #6c757d;           /* Dull Gray color */
    text-decoration: none;    /* No underline */
    text-transform: uppercase;
    letter-spacing: 1.5px;    /* Makes it look premium */
    opacity: 0.5;             /* 50% transparent */
    transition: all 0.3s ease;
}

.dev-signature span {
    font-weight: 900;         /* Bold name */
}

/* Hover Effect: Turns brand color when touched */
.dev-signature:hover {
    opacity: 1;
    color: #00b4d8;           /* Zestia Blue */
    transform: translateY(-2px);
}
