* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: #f5f5f5;
    color: #333;
}

/* HEADER SECTION */
header {
    background: #003366;
    color: white;
    padding: 20px 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
}

.college-logo {
    width: 120px;
    height: 90px;
    object-fit: contain;
}

.logo-text {
    text-align: left;
}

.logo-text h1 {
    font-size: 26px;
    line-height: 1.3;
}

.logo-text p {
    font-size: 14px;
    opacity: 0.9;
}

/* NAVIGATION */
nav {
    background: #00509e;
}

nav ul {
    display: flex;
    list-style: none;
    padding: 12px;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: white;
    color: #00509e;
    border-radius: 4px;
}

/* HERO SECTION */
.hero {
    background: linear-gradient(#e8eef7, #ffffff);
    padding: 80px 20px;
    text-align: center;
    position: relative;
}

.hero-text {
    background: white;
    padding: 30px 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    max-width: 750px;
    margin: auto;
}

.hero-text h2 {
    font-size: 36px;
    color: #003366;
}

.hero-text p {
    font-size: 18px;
    margin-top: 10px;
    color: #333;
}

.hero-text .btn {
    background: #00509e;
    color: white;
    padding: 10px 25px;
    margin-top: 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.btn {
    background: #ffcc00;
    padding: 10px 22px;
    border-radius: 6px;
    color: black;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}

.btn:hover {
    background: white;
    color: black;
}

/* ABOUT SECTION */
/* ABOUT OUR COLLEGE */
/* PREMIUM ABOUT SECTION */
.about-enhanced {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    padding: 90px 10%;
    background: linear-gradient(to bottom right, #f0f6ff, #ffffff);
}

.about-img img {
    width: 480px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.18);
}

.about-content {
    max-width: 650px;
}

.about-content h2 {
    font-size: 36px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

/* ICON HIGHLIGHTS */
.about-highlights {
    margin-top: 25px;
    display: flex;
    gap: 20px;
}

.highlight-box {
    background: white;
    width: 180px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.highlight-box span {
    font-size: 32px;
}

.highlight-box h4 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #003366;
}

.highlight-box p {
    font-size: 14px;
    color: #555;
}




/*GOVERNING SECTION */

.governing-section {
    background: #ffffff;
    padding: 60px 10%;
    text-align: center;
}

.governing-section h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #003366;
    font-weight: bold;
    position: relative;
}

.gov-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.gov-card {
    background: #f7f9fc;
    width: 280px;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gov-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.25);
}

.gov-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
    border: 3px solid #003366;
}

.gov-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #003366;
    margin-bottom: 8px;
}

.gov-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.gov-card button {
    background: #00509e;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s ease;
}

.gov-card button:hover {
    background: #ffcc00;
    color: black;
}

/* FOOTER */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

footer p {
    font-size: 15px;
    margin: 5px 0;
}

.copy {
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.8;
}
